summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Falcao <gabriel@nacaolivre.org>2014-06-19 16:37:27 -0400
committerGabriel Falcao <gabriel@nacaolivre.org>2014-06-19 16:37:27 -0400
commit6cf6cef6c4e05869dffd07418841f9b2b372e48a (patch)
tree4e77ace54f4b7cbbda0f8c1e7856073726d81c69
parent3b1c00299a671a2685a5a6ddf909f99adc0c05c1 (diff)
downloadhttpretty-6cf6cef6c4e05869dffd07418841f9b2b372e48a.tar.gz
New release: 0.8.30.8.3
-rw-r--r--README.md2
-rw-r--r--docs/.markment.yml2
-rw-r--r--docs/NEWS.md2
-rw-r--r--httpretty/__init__.py2
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