summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Falcao <gabriel@nacaolivre.org>2013-10-07 17:42:31 -0400
committerGabriel Falcao <gabriel@nacaolivre.org>2013-10-07 17:42:31 -0400
commit8995519e256bb31f3aaa65b2f9f72f3379d8868f (patch)
tree5ba0edad7fc9075f675ebcad16dd81278a349338
parent597d0e6b1429852ac62fbffb793e0f445ed24fd1 (diff)
downloadhttpretty-8995519e256bb31f3aaa65b2f9f72f3379d8868f.tar.gz
New release: 0.7.0
-rw-r--r--.markment.yml2
-rw-r--r--NEWS.md12
-rw-r--r--README.md2
-rw-r--r--httpretty/__init__.py2
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
diff --git a/NEWS.md b/NEWS.md
index 26e6503..f997abe 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -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:
diff --git a/README.md b/README.md
index 1b64fe5..42c9918 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# HTTPretty 0.6.5
+# HTTPretty 0.7.0
[![Build Status](https://secure.travis-ci.org/gabrielfalcao/HTTPretty.png)](http://travis-ci.org/gabrielfalcao/HTTPretty)
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/gabrielfalcao/httpretty/trend.png)](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