diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-06-24 21:58:12 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-06-24 21:58:12 +0000 |
| commit | 3d1b592d1825bc45c1e55ac6e0b7dcd102b18a9a (patch) | |
| tree | 5717a4c8164aa2822f29eca028e06d9441f35e63 | |
| parent | 9d136a0dce4b6d28aa51b060aa64a0e71c566491 (diff) | |
| download | pyramid-3d1b592d1825bc45c1e55ac6e0b7dcd102b18a9a.tar.gz pyramid-3d1b592d1825bc45c1e55ac6e0b7dcd102b18a9a.tar.bz2 pyramid-3d1b592d1825bc45c1e55ac6e0b7dcd102b18a9a.zip | |
Prep for 1.0a3.
| -rw-r--r-- | CHANGES.txt | 17 | ||||
| -rw-r--r-- | docs/conf.py | 4 | ||||
| -rw-r--r-- | setup.py | 2 |
3 files changed, 13 insertions, 10 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index d5e92720c..63a77c1d6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -Next release -============ +1.0a3 (2009-06-24) +================== Implementation Changes ---------------------- @@ -7,7 +7,9 @@ Implementation Changes - ``repoze.bfg`` no longer relies on the Routes package to interpret URL paths. All known existing ``path`` patterns will continue to work with the reimplemented logic, which lives in - ``repoze.bfg.urldispatch``. + ``repoze.bfg.urldispatch``. ``<route>`` ZCML directives which use + certain attributes (uncommon ones) may not work (see "Backwards + Incompatibilities" below). Bug Fixes --------- @@ -42,15 +44,16 @@ Backwards Incompatibilities - As a result of disusing Routes, using the Routes ``url_for`` API inside a BFG application (as was suggested by previous iterations of - tutorials) will no longer work. + tutorials) will no longer work. Use the + ``repoze.bfg.url.route_url`` method instead. - The following attributes on the ``<route>`` ZCML directive no longer work: ``encoding``, ``static``, ``filter``, ``condition_method``, - ``condition_subdomain``, ``condition_function``, ``explicit``, - ``subdomains``. + ``condition_subdomain``, ``condition_function``, ``explicit``, or + ``subdomains``. These were all Routes features. - The ``<route>`` ZCML directive no longer supports the - ``<requirement>`` subdirective. + ``<requirement>`` subdirective. This was a Routes feature. 1.0a2 (2009-06-23) ================== diff --git a/docs/conf.py b/docs/conf.py index ce14d69c0..41a2914a0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ copyright = '2008, Agendaless Consulting' # other places throughout the built documents. # # The short X.Y version. -version = '1.0dev' +version = '1.0a3' # The full version, including alpha/beta/rc tags. -release = '1.0dev' +release = '1.0a3' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -12,7 +12,7 @@ # ############################################################################## -__version__ = '1.0dev' +__version__ = '1.0a3' import os |
