From 3d1b592d1825bc45c1e55ac6e0b7dcd102b18a9a Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 24 Jun 2009 21:58:12 +0000 Subject: Prep for 1.0a3. --- CHANGES.txt | 17 ++++++++++------- docs/conf.py | 4 ++-- 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``. ```` 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 ```` 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 ```` ZCML directive no longer supports the - ```` subdirective. + ```` 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: diff --git a/setup.py b/setup.py index e10ed2ae2..967136029 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ # ############################################################################## -__version__ = '1.0dev' +__version__ = '1.0a3' import os -- cgit v1.2.3