From fd1fe75527ec21bac052ab4b524d0140b48b6b70 Mon Sep 17 00:00:00 2001 From: Gabriel Falcao Date: Tue, 5 Nov 2013 11:54:29 -0500 Subject: [PATCH] New release: 0.7.1 --- README.md | 2 +- docs/.markment.yml | 2 +- docs/NEWS.md | 2 +- httpretty/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea08dde..dbe0fef 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# HTTPretty 0.7.0 +# HTTPretty 0.7.1 ![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) diff --git a/docs/.markment.yml b/docs/.markment.yml index f669aba..ab843b8 100644 --- a/docs/.markment.yml +++ b/docs/.markment.yml @@ -1,6 +1,6 @@ project: name: "HTTPretty" - version: 0.7.0 + version: 0.7.1 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 d8fb0e1..79fa8c8 100644 --- a/docs/NEWS.md +++ b/docs/NEWS.md @@ -1,6 +1,6 @@ # Release Notes -## 0.7.0 (current) +## 0.7.1 (current) Improvements: diff --git a/httpretty/__init__.py b/httpretty/__init__.py index 8b54ce2..8f60594 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.0' +__version__ = version = '0.7.1' from .core import httpretty, httprettified from .errors import HTTPrettyError