From 354b6b7de9257be54283a1012e5f4a16963575cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Falc=C3=A3o?= Date: Mon, 18 Jan 2016 08:54:44 -0500 Subject: [PATCH] New release: 0.8.14 --- README.md | 2 +- docs/.markment.yml | 2 +- docs/NEWS.md | 2 +- docs/source/conf.py | 4 ++-- httpretty/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 45f37ba..73e8b93 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# HTTPretty 0.8.13 +# HTTPretty 0.8.14 ![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) [![Build Status](https://travis-ci.org/gabrielfalcao/HTTPretty.png?branch=master)](https://travis-ci.org/gabrielfalcao/HTTPretty) diff --git a/docs/.markment.yml b/docs/.markment.yml index 2ff04a7..b6c7bfb 100644 --- a/docs/.markment.yml +++ b/docs/.markment.yml @@ -1,6 +1,6 @@ project: name: "HTTPretty" - version: 0.8.13 + version: 0.8.14 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 9bf2b2f..2397585 100644 --- a/docs/NEWS.md +++ b/docs/NEWS.md @@ -1,6 +1,6 @@ # Release Notes -## 0.8.13 (current) +## 0.8.14 (current) Improvements: diff --git a/docs/source/conf.py b/docs/source/conf.py index 31bbffd..6e786b6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,9 +63,9 @@ author = u'Gabriel Falcão' # built documents. # # The short X.Y version. -version = u'0.8.13' +version = u'0.8.14' # The full version, including alpha/beta/rc tags. -release = u'0.8.13' +release = u'0.8.14' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/httpretty/__init__.py b/httpretty/__init__.py index c5ef0c0..24d45a8 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.13' +__version__ = version = '0.8.14' from .core import httpretty, httprettified, EmptyRequestHeaders from .errors import HTTPrettyError, UnmockedError