chore: Finalized version 0.1.2

This commit is contained in:
kgriffs
2013-03-19 00:43:53 -04:00
parent 10e4e9d8d9
commit 670cd84f9d
3 changed files with 22 additions and 2 deletions

View File

@@ -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 ##

View File

@@ -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."""

View File

@@ -1,5 +1,5 @@
[egg_info]
tag_build = dev
;tag_build = dev
[nosetests]
cover-package=marconi