diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b89eab7..7ee3a172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,6 @@ Changelog - Added a `mapping` type that allows users to quikly map string values to Python types - Added a `smart_boolean` type that respects explicit true/false in string values -### 1.6.3 +### 1.6.4 - Fixed a small spelling error on the `smart_boolean` type diff --git a/hug/_version.py b/hug/_version.py index ae4d0059..6f1ee622 100644 --- a/hug/_version.py +++ b/hug/_version.py @@ -19,4 +19,4 @@ OTHER DEALINGS IN THE SOFTWARE. """ -current = "1.6.3" +current = "1.6.4" diff --git a/setup.py b/setup.py index b8c2fb09..029689b7 100755 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ def list_modules(dirname): readme = '' setup(name='hug', - version='1.6.3', + version='1.6.4', description='A Python framework that makes developing APIs as simple as possible, but no simpler.', long_description=readme, author='Timothy Crosley',