diff options
| author | Chris McDonough <chrism@agendaless.com> | 2010-09-08 05:58:33 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2010-09-08 05:58:33 +0000 |
| commit | e8b61c3fca9cfb2b3276e60e59138937e8349498 (patch) | |
| tree | 359de69c3f2ef3ba3077d372abdede803c98b29d /docs | |
| parent | 7768b4e905851149418e1ccacac76ab443ca2daa (diff) | |
| download | pyramid-e8b61c3fca9cfb2b3276e60e59138937e8349498.tar.gz pyramid-e8b61c3fca9cfb2b3276e60e59138937e8349498.tar.bz2 pyramid-e8b61c3fca9cfb2b3276e60e59138937e8349498.zip | |
prep for 1.3a12
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 2 | ||||
| -rw-r--r-- | docs/whatsnew-1.3.rst | 29 |
2 files changed, 30 insertions, 1 deletions
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 ----------------- |
