diff options
| author | Gabriel Falcao <gabriel@nacaolivre.org> | 2013-10-07 17:42:31 -0400 |
|---|---|---|
| committer | Gabriel Falcao <gabriel@nacaolivre.org> | 2013-10-07 17:42:31 -0400 |
| commit | 8995519e256bb31f3aaa65b2f9f72f3379d8868f (patch) | |
| tree | 5ba0edad7fc9075f675ebcad16dd81278a349338 | |
| parent | 597d0e6b1429852ac62fbffb793e0f445ed24fd1 (diff) | |
| download | httpretty-8995519e256bb31f3aaa65b2f9f72f3379d8868f.tar.gz | |
New release: 0.7.0
| -rw-r--r-- | .markment.yml | 2 | ||||
| -rw-r--r-- | NEWS.md | 12 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | httpretty/__init__.py | 2 |
4 files changed, 14 insertions, 4 deletions
diff --git a/.markment.yml b/.markment.yml index 9c1172c..14fe0cd 100644 --- a/.markment.yml +++ b/.markment.yml @@ -1,6 +1,6 @@ project: name: "HTTPretty" - version: 0.6.5 + version: 0.7.0 description: HTTP client mock for Python github_maintainer: gabrielfalcao @@ -1,4 +1,14 @@ -### New in version 0.6.5 +### New in version 0.7.0 + +Improvements: + +* Refactored `core.py` and increased its unit test coverage to 80%. HTTPretty is slightly more robust now. + +Bug fixes: + +* POST requests being called twice [#100](https://github.com/gabrielfalcao/HTTPretty/pull/100) + +### New in version 0.7.0 Applied pull requests: @@ -1,4 +1,4 @@ -# HTTPretty 0.6.5 +# HTTPretty 0.7.0 [](http://travis-ci.org/gabrielfalcao/HTTPretty) [](https://bitdeli.com/free "Bitdeli Badge") diff --git a/httpretty/__init__.py b/httpretty/__init__.py index f8ee9fa..1d7b8a6 100644 --- a/httpretty/__init__.py +++ b/httpretty/__init__.py @@ -25,7 +25,7 @@ # OTHER DEALINGS IN THE SOFTWARE. from __future__ import unicode_literals -__version__ = version = '0.6.5' +__version__ = version = '0.7.0' import sys |
