New release: 0.8.0

This commit is contained in:
Gabriel Falcao
2014-02-03 14:16:40 -05:00
parent de6c488b18
commit 2279068c0a
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# HTTPretty 0.7.1
# HTTPretty 0.8.0
![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.7.1
version: 0.8.0
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.7.1 (current)
## 0.8.0 (current)
Improvements:

View File

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