Skip to content

Commit

Permalink
chore: Set version to 0.1.6.post3 and update CHANGES.md
Browse files Browse the repository at this point in the history
This patch is in anticipation of the 0.1.6.post3 release.
  • Loading branch information
kgriffs committed Aug 5, 2013
1 parent 42a78f2 commit e8705c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.1.6.post3 #

## Fixed ##

* Content-Length is now calculated correctly for Unicode bodies (flaper87)
* Status code 500 is now returned for type errors raised within responders,
even when wrapped by several hooks.

# 0.1.6.post2 #

## Fixed ##
Expand Down
2 changes: 1 addition & 1 deletion falcon/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"""

VERSION_TUPLE = (0, 1, 7, 'dev1')
VERSION_TUPLE = (0, 1, 6, 'post3')

__version__ = '.'.join(map(str, VERSION_TUPLE))
"""Current version of Falcon."""
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[egg_info]
tag_build = dev1
tag_build = post3

[nosetests]
where = falcon/tests
Expand Down

0 comments on commit e8705c0

Please sign in to comment.