Skip to content

Commit

Permalink
Merge branch 'release/1.6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Nov 2, 2015
2 parents 71002c4 + 032aed8 commit 6f12cd7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,7 @@ Changelog
### 1.6.2
- 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.4
- Fixed a small spelling error on the `smart_boolean` type

2 changes: 1 addition & 1 deletion hug/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
OTHER DEALINGS IN THE SOFTWARE.
"""
current = "1.6.2"
current = "1.6.4"
2 changes: 1 addition & 1 deletion hug/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def smart_boolean(input_value):
elif value in ('false', ''):
return False

raise KeyError('Invalid value bassed in for true/false field')
raise KeyError('Invalid value passed in for true/false field')


def inline_dictionary(input_value):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def list_modules(dirname):
readme = ''

setup(name='hug',
version='1.6.2',
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',
Expand Down

0 comments on commit 6f12cd7

Please sign in to comment.