New release: 0.8.12

This commit is contained in:
Gabriel Falcão 2015-12-14 09:52:30 -02:00
parent 0eb53806db
commit f8e89e8ac5
5 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# HTTPretty 0.8.11
# HTTPretty 0.8.12
![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)

View File

@ -1,6 +1,6 @@
project:
name: "HTTPretty"
version: 0.8.11
version: 0.8.12
description: HTTP request mock tool for python
tagline: Intercept real HTTP calls in python, test your software better.
twitter: gabrielfalcao
@ -9,7 +9,7 @@ project:
github_maintainer: gabrielfalcao
github_maintainer_name: Gabriel Falcão
github_maintainer_url: http://github.com/gabrielfalcao
github_maintainer_gravatar: https://secure.gravatar.com/avatar/3fa0df5c54f5ac0.8.112d992d7d24039?s=64
github_maintainer_gravatar: https://secure.gravatar.com/avatar/3fa0df5c54f5ac0.8.122d992d7d24039?s=64
github_url: http://github.com/gabrielfalcao/HTTPretty
github_fork_url: https://github.com/gabrielfalcao/HTTPretty/archive/master.tar.gz

View File

@ -1,6 +1,6 @@
# Release Notes
## 0.8.11 (current)
## 0.8.12 (current)
Improvements:

View File

@ -63,9 +63,9 @@ author = u'Gabriel Falcão'
# built documents.
#
# The short X.Y version.
version = u'0.8.11'
version = u'0.8.12'
# The full version, including alpha/beta/rc tags.
release = u'0.8.11'
release = u'0.8.12'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -25,7 +25,7 @@
# OTHER DEALINGS IN THE SOFTWARE.
from __future__ import unicode_literals
__version__ = version = '0.8.11'
__version__ = version = '0.8.12'
from .core import httpretty, httprettified, EmptyRequestHeaders
from .errors import HTTPrettyError, UnmockedError