New release: 0.8.14

This commit is contained in:
Gabriel Falcão 2016-01-18 08:54:44 -05:00
parent d54939ec21
commit 354b6b7de9
5 changed files with 6 additions and 6 deletions

View File

@ -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)

View File

@ -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

View File

@ -1,6 +1,6 @@
# Release Notes
## 0.8.13 (current)
## 0.8.14 (current)
Improvements:

View File

@ -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.

View File

@ -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