summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-15 00:26:48 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-15 00:26:48 +0000
commitf0fc3e5c1dee40d4262a85204c356516d1d2ea5a (patch)
tree6326b3808681ed8cecf985701700dcb5c2c21d9a
parent2f320ccb481057be752a51a06acb0e33581abe6c (diff)
downloadpyramid-f0fc3e5c1dee40d4262a85204c356516d1d2ea5a.tar.gz
pyramid-f0fc3e5c1dee40d4262a85204c356516d1d2ea5a.tar.bz2
pyramid-f0fc3e5c1dee40d4262a85204c356516d1d2ea5a.zip
prep for 1.3a14
-rw-r--r--CHANGES.txt4
-rw-r--r--docs/conf.py2
-rw-r--r--docs/whatsnew-1.3.rst13
-rw-r--r--setup.py2
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