From 3f557604dc123690b20f81902ddbefdd7b732da4 Mon Sep 17 00:00:00 2001 From: Gabriel Falcao Date: Mon, 23 Sep 2013 15:41:05 -0400 Subject: [PATCH] New release: 0.6.4 --- .markment.yml | 2 +- .release | 2 +- httpretty/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.markment.yml b/.markment.yml index 472cc3f..f3f50eb 100644 --- a/.markment.yml +++ b/.markment.yml @@ -1,6 +1,6 @@ project: name: "HTTPretty" - version: 0.6.2 + version: 0.6.4 description: HTTP client mock for Python github_maintainer: gabrielfalcao diff --git a/.release b/.release index 19b11f3..1cf0442 100755 --- a/.release +++ b/.release @@ -6,7 +6,7 @@ read newversion find_files () { - find * -name '*.py' -or -name '*.yml' + find . -name '*.py' -or -name '*.yml' } update_files (){ find_files | xargs gsed -i "s,$current_version,$newversion,g" diff --git a/httpretty/__init__.py b/httpretty/__init__.py index 81e12c2..f7ec20f 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.6.3' +__version__ = version = '0.6.4' import sys