From 6cf6cef6c4e05869dffd07418841f9b2b372e48a Mon Sep 17 00:00:00 2001 From: Gabriel Falcao Date: Thu, 19 Jun 2014 16:37:27 -0400 Subject: [PATCH] New release: 0.8.3 --- 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 e22371c..7c5fb3f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# HTTPretty 0.8.2 +# HTTPretty 0.8.3 ![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 ad556fc..8666287 100644 --- a/docs/.markment.yml +++ b/docs/.markment.yml @@ -1,6 +1,6 @@ project: name: "HTTPretty" - version: 0.8.2 + version: 0.8.3 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 423ce35..ca1ca45 100644 --- a/docs/NEWS.md +++ b/docs/NEWS.md @@ -1,6 +1,6 @@ # Release Notes -## 0.8.2 (current) +## 0.8.3 (current) Improvements: diff --git a/httpretty/__init__.py b/httpretty/__init__.py index 6cc7196..7f3c4bf 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.8.2' +__version__ = version = '0.8.3' from .core import httpretty, httprettified from .errors import HTTPrettyError