diff options
| author | Gabriel Falcao <gabriel@nacaolivre.org> | 2012-12-10 17:33:58 -0500 |
|---|---|---|
| committer | Gabriel Falcao <gabriel@nacaolivre.org> | 2012-12-10 17:33:58 -0500 |
| commit | e80890db183af6d1f4f61394fc5e3a06147a56cc (patch) | |
| tree | ee31eb1a15290515caaf73607c32c088ad94aa6b | |
| parent | 3a76fe1963038841d09dfa888e7bfb70b9b81cb5 (diff) | |
| download | httpretty-e80890db183af6d1f4f61394fc5e3a06147a56cc.tar.gz | |
releasing 0.5.5 with @z4r's contribution:0.5.5
* Fix parsing HTTP status lines
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | httpretty/__init__.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ # HTTPretty -> Version 0.5.4 +> Version 0.5.5 [](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 |
