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