diff --git a/README.md b/README.md index 4bfe377..e00b3cf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# HTTPretty 0.7.1 +# HTTPretty 0.8.0 ![https://s3-us-west-2.amazonaws.com/s.cdpn.io/18885/httpretty-logo_1.svg](https://s3-us-west-2.amazonaws.com/s.cdpn.io/18885/httpretty-logo_1.svg) [![tip for next commit](http://tip4commit.com/projects/133.svg)](http://tip4commit.com/projects/133) diff --git a/docs/.markment.yml b/docs/.markment.yml index ab843b8..a714ea2 100644 --- a/docs/.markment.yml +++ b/docs/.markment.yml @@ -1,6 +1,6 @@ project: name: "HTTPretty" - version: 0.7.1 + version: 0.8.0 description: HTTP request mock tool for python tagline: Intercept real HTTP calls in python, test your software better. twitter: gabrielfalcao diff --git a/docs/NEWS.md b/docs/NEWS.md index 79fa8c8..5c6e80c 100644 --- a/docs/NEWS.md +++ b/docs/NEWS.md @@ -1,6 +1,6 @@ # Release Notes -## 0.7.1 (current) +## 0.8.0 (current) Improvements: diff --git a/httpretty/__init__.py b/httpretty/__init__.py index 8f60594..7f77986 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.7.1' +__version__ = version = '0.8.0' from .core import httpretty, httprettified from .errors import HTTPrettyError