summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-08 05:58:33 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-08 05:58:33 +0000
commite8b61c3fca9cfb2b3276e60e59138937e8349498 (patch)
tree359de69c3f2ef3ba3077d372abdede803c98b29d
parent7768b4e905851149418e1ccacac76ab443ca2daa (diff)
downloadpyramid-e8b61c3fca9cfb2b3276e60e59138937e8349498.tar.gz
pyramid-e8b61c3fca9cfb2b3276e60e59138937e8349498.tar.bz2
pyramid-e8b61c3fca9cfb2b3276e60e59138937e8349498.zip
prep for 1.3a12
-rw-r--r--CHANGES.txt4
-rw-r--r--docs/conf.py2
-rw-r--r--docs/whatsnew-1.3.rst29
-rw-r--r--setup.py2
4 files changed, 33 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index af6f84b2d..71164a681 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,5 @@
-Next release
-============
+1.3a12 (2010-09-08)
+===================
Bug Fixes
---------
diff --git a/docs/conf.py b/docs/conf.py
index 2b417ff74..0038c81a8 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.3a11'
+version = '1.3a12'
# 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 95c19960d..06635be7a 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -346,6 +346,21 @@ Minor Feature Additions
testing_add_subscriber
event_iface
+- The argument to
+ :meth:`repoze.bfg.configuration.Configurator.add_route` which was
+ previously called ``path`` is now called ``pattern`` for better
+ explicability. For backwards compatibility purposes, passing a
+ keyword argument named ``path`` to ``add_route`` will still work
+ indefinitely.
+
+- The ``path`` attribute to the ZCML ``route`` directive (see
+ :ref:`route_directive`) is now named ``pattern`` for better
+ explicability. The older ``path`` attribute will continue to work
+ indefinitely.
+
+- The ``routesalchemy`` paster template has been updated to use
+ ``pattern`` in its route declarations rather than ``path``.
+
Backwards Incompatibilities
---------------------------
@@ -519,6 +534,9 @@ Dependency Changes
- Chameleon 1.2.3 or better is now required (internationalization and
per-template debug settings).
+- :mod:`repoze.bfg` ``tests_require`` now includes
+ ``repoze.sphinx.autointerface`` as a dependency.
+
Documentation Enhancements
--------------------------
@@ -600,6 +618,17 @@ Documentation Enhancements
- Various changes to denote that Python dotted names are now allowed
as input to Configurator methods.
+- All narrative, API, and tutorial docs which referred to a route
+ pattern as a ``path`` have now been updated to refer to them as a
+ ``pattern``.
+
+- The :mod:`repoze.bfg.interfaces` API documentation page is now
+ rendered via ``repoze.sphinx.autointerface``.
+
+- The :ref:`urldispatch_chapter` chapter now refers to the
+ :mod:`repoze.bfg.interfaces` chapter to explain the API of an
+ :class:`repoze.bfg.interfaces.IRoute` object.
+
Licensing Changes
-----------------
diff --git a/setup.py b/setup.py
index c36fca4ce..88d9c09d0 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
#
##############################################################################
-__version__ = '1.3a11'
+__version__ = '1.3a12'
import os
import platform