From 670cd84f9d6834b9948f7188e88da9945515567e Mon Sep 17 00:00:00 2001 From: kgriffs Date: Tue, 19 Mar 2013 00:43:53 -0400 Subject: [PATCH] chore: Finalized version 0.1.2 --- CHANGES.md | 20 ++++++++++++++++++++ falcon/version.py | 2 +- setup.cfg | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d112baa..eeaa454 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,23 @@ +# v0.1.2 # + +## Fixed ## + +* Falcon requires QUERY_STRING in WSGI environ, but PEP-333 does not require it +* Hook decorators can overwrite eachother's actions +* Test coverage is not 100% when branch coverage is enabled + +## Breaking Changes ## + +* Renamed falcon.testing.TestSuite to TestBase +* Renamed TestBase.prepare hook to TestBase.before + +## New ## + +* Python 2.6 support +* Added TestBase.after hook +* Made testtools dependency optional (falls back to unittest if import fails) +* Trailing slashes in routes and request paths are ignored, so you no longer need to add two routes for each resource + # v0.1.1 # ## Fixed ## diff --git a/falcon/version.py b/falcon/version.py index 94fccfb..d200338 100644 --- a/falcon/version.py +++ b/falcon/version.py @@ -16,7 +16,7 @@ limitations under the License. """ -VERSION_TUPLE = (0, 1, 2, '-dev') +VERSION_TUPLE = (0, 1, 2, '') version = '.'.join(map(str, VERSION_TUPLE[:-1])) + VERSION_TUPLE[-1] """Current version of Falcon.""" diff --git a/setup.cfg b/setup.cfg index bc1aa98..eb28493 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [egg_info] -tag_build = dev +;tag_build = dev [nosetests] cover-package=marconi