summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-12-07 20:30:17 +0000
committerChris McDonough <chrism@agendaless.com>2008-12-07 20:30:17 +0000
commitd1925330a4b9c9fae0ac28025b5c1023a0a5c0a6 (patch)
treec1aab48a1e5ec2e9e7a1903a1285d1813e98c22c
parent846a9862f7c8f987977cad6415cc0949542b0322 (diff)
downloadpyramid-d1925330a4b9c9fae0ac28025b5c1023a0a5c0a6.tar.gz
pyramid-d1925330a4b9c9fae0ac28025b5c1023a0a5c0a6.tar.bz2
pyramid-d1925330a4b9c9fae0ac28025b5c1023a0a5c0a6.zip
Prep for 0.5.3.
-rw-r--r--CHANGES.txt6
-rw-r--r--docs/conf.py4
-rw-r--r--setup.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 286577d72..566aab498 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,13 +1,13 @@
-Next release
+0.5.3 (12/7/2008)
- Remove the ``ITestingTemplateRenderer`` interface. When
- ``testing.registerDummyRenderer`` is used, it now registers a
+ ``testing.registerDummyRenderer`` is used, it instead registers a
dummy implementation using ``ITemplateRenderer`` interface, which
is checked for when the built-in templating facilities do
rendering. This change also allows developers to make explcit
named utility registrations in the ZCML registry against
``ITemplateRenderer``; these will be found before any on-disk
- template.
+ template is looked up.
0.5.2 (12/5/2008)
diff --git a/docs/conf.py b/docs/conf.py
index e20f63eec..0a6d41d88 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 = '0.5.2'
+version = '0.5.3'
# The full version, including alpha/beta/rc tags.
-release = '0.5.2'
+release = '0.5.3'
# 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 5c9e7b17c..a3cddf38e 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
#
##############################################################################
-__version__ = '0.5.2'
+__version__ = '0.5.3'
import os