Version increment.

Change-Id: I310bfb38ed550e7e5932988ba21602bbea689e83
This commit is contained in:
Ryan Petrello 2015-01-12 15:19:08 -05:00
parent b98aac0abc
commit 868c28d031
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
0.8.3
=====
* Changed pecan to more gracefully handle a few odd request encoding edge
cases. Now pecan applications respond with an HTTP 400 (rather than an
uncaught UnicodeDecodeError, resulting in an HTTP 500) when:
- HTTP POST requests are composed of non-Unicode data
- Request paths contain invalid percent-encoded characters, e.g.,
``/some/path/%aa/``
* Improved verbosity for import-related errors in pecan configuration files,
especially those involving relative imports.
0.8.2
=====
* Fixes a bug that breaks support for multi-value query string variables (e.g.,

View File

@ -3,7 +3,7 @@ import platform
from setuptools import setup, find_packages
version = '0.8.2'
version = '0.8.3'
#
# determine requirements