summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-24 11:14:41 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-24 11:14:41 +0000
commit78b132d8301e00803f7c7d95efabad8c64189117 (patch)
treeb4a04e8b4a6fff638e05f72299b80c7759b82925
parent3bcab82a948f8c3feb0be856e967d1513a0b3f51 (diff)
downloadpyramid-78b132d8301e00803f7c7d95efabad8c64189117.tar.gz
pyramid-78b132d8301e00803f7c7d95efabad8c64189117.tar.bz2
pyramid-78b132d8301e00803f7c7d95efabad8c64189117.zip
Prep for 1.2a8.
-rw-r--r--CHANGES.txt18
-rw-r--r--docs/conf.py2
-rw-r--r--setup.py2
3 files changed, 17 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5ac86a6a9..464042a87 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,5 @@
-Next release
-============
+1.2a8 (2009-12-24)
+==================
Features
--------
@@ -9,6 +9,10 @@ Features
- Add ``hook_zca`` and ``unhook_zca`` methods to the ``Configurator``
API.
+- The ``repoze.bfg.testing.setUp`` method now returns a
+ ``Configurator`` instance which can be used to do further
+ configuration during unit tests.
+
Bug Fixes
---------
@@ -26,7 +30,15 @@ Documentation
-------------
- General documentation improvements by using better Sphinx roles such
- as "class", "func", "meth", and so on.
+ as "class", "func", "meth", and so on. This means that there are
+ many more hyperlinks pointing to API documentation for API
+ definitions in all narrative, tutorial, and API documentation
+ elements.
+
+- Added a description of imperative configuration in various places
+ which only described ZCML configuration.
+
+- A syntactical refreshing of various tutorials.
- Added the ``repoze.bfg.authentication``,
``repoze.bfg.authorization``, and ``repoze.bfg.interfaces`` modules
diff --git a/docs/conf.py b/docs/conf.py
index a6bade1bd..20561bf59 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -51,7 +51,7 @@ copyright = '2008-2009, Agendaless Consulting'
# other places throughout the built documents.
#
# The short X.Y version.
-version = '1.2a7'
+version = '1.2a8'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/setup.py b/setup.py
index 85dcd5d3a..e130dcedd 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
#
##############################################################################
-__version__ = '1.2a7'
+__version__ = '1.2a8'
import os
import sys