From f0fc3e5c1dee40d4262a85204c356516d1d2ea5a Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Sep 2010 00:26:48 +0000 Subject: prep for 1.3a14 --- CHANGES.txt | 4 ++-- docs/conf.py | 2 +- docs/whatsnew-1.3.rst | 13 +++++++++++++ setup.py | 2 +- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 9dbb5a0cb..9550a88fd 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -Next version -============ +1.3a14 (2010-09-14) +=================== Bug Fixes --------- diff --git a/docs/conf.py b/docs/conf.py index 45ca785b4..2886f8f93 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ copyright = '2008-2010, Agendaless Consulting' # other places throughout the built documents. # # The short X.Y version. -version = '1.3a13' +version = '1.3a14' # The full version, including alpha/beta/rc tags. release = version diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst index 63f0355fd..c356d5fa4 100644 --- a/docs/whatsnew-1.3.rst +++ b/docs/whatsnew-1.3.rst @@ -405,6 +405,8 @@ Minor Feature Additions :class:`repoze.bfg.interfaces.IRoutePregenerator` for more information. +- Compatibility with WebOb 1.0 (now requires WebOb >= 1.0). + Backwards Incompatibilities --------------------------- @@ -537,6 +539,17 @@ Backwards Incompatibilities processing; it only began existence once an exception view was found. +- Due to changes introduced WebOb 1.0, the + ``repoze.bfg.request.make_request_ascii`` event subscriber no longer + worked, so it has been removed. This subscriber was meant to be used + in a deployment so that code written before BFG 0.7.0 could run + unchanged. At this point, such code will need to be rewritten to + expect Unicode from ``request.GET``, ``request.POST`` and + ``request.params`` or it will need to be changed to use + ``request.str_POST``, ``request.str_GET`` and/or + ``request.str_params`` instead of the non-``str`` versions of same, + as the non-``str`` versions of the same APIs always now perform + decoding to Unicode. Deprecations and Behavior Differences ------------------------------------- diff --git a/setup.py b/setup.py index 5ee71d6e9..6586791b0 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ # ############################################################################## -__version__ = '1.3a13' +__version__ = '1.3a14' import os import platform -- cgit v1.2.3