summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Falcao <gabriel@nacaolivre.org>2012-12-10 17:33:58 -0500
committerGabriel Falcao <gabriel@nacaolivre.org>2012-12-10 17:33:58 -0500
commite80890db183af6d1f4f61394fc5e3a06147a56cc (patch)
treeee31eb1a15290515caaf73607c32c088ad94aa6b
parent3a76fe1963038841d09dfa888e7bfb70b9b81cb5 (diff)
downloadhttpretty-e80890db183af6d1f4f61394fc5e3a06147a56cc.tar.gz
releasing 0.5.5 with @z4r's contribution:0.5.5
* Fix parsing HTTP status lines
-rw-r--r--README.md4
-rw-r--r--httpretty/__init__.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 15028e8..5c2a5bd 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# HTTPretty
-> Version 0.5.4
+> Version 0.5.5
[![Build Status](https://secure.travis-ci.org/gabrielfalcao/HTTPretty.png)](http://travis-ci.org/gabrielfalcao/HTTPretty)
@@ -168,7 +168,7 @@ def test_twitter_api_integration(now):
'\r\n',
'{"text":"Thanks for all your #FollowMe1D requests Directioners! We\u2019ll be following 10 people throughout the day starting NOW. G ..."}\r\n'
]
-
+
TWITTER_STREAMING_URL = "https://stream.twitter.com/1/statuses/filter.json"
# set the body to a generator and set `streaming=True` to mock a streaming response body
diff --git a/httpretty/__init__.py b/httpretty/__init__.py
index 52ddd84..5ed9fdf 100644
--- a/httpretty/__init__.py
+++ b/httpretty/__init__.py
@@ -23,7 +23,7 @@
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
-version = '0.5.4'
+version = '0.5.5'
import re
import socket