summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-23 16:22:39 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-23 16:22:39 +0000
commit56d110d76fba7294087a2c2aa065f8d21064f956 (patch)
tree305d5ffc7cd38603b3b4eeefb991bbb3a904a3a6
parent1b4e9b5d5e6ee1199b998c49e322ca0c4e540ac6 (diff)
downloadpyramid-56d110d76fba7294087a2c2aa065f8d21064f956.tar.gz
pyramid-56d110d76fba7294087a2c2aa065f8d21064f956.tar.bz2
pyramid-56d110d76fba7294087a2c2aa065f8d21064f956.zip
Prep for 0.6.4.
-rw-r--r--CHANGES.txt14
-rw-r--r--docs/conf.py4
-rw-r--r--setup.py2
3 files changed, 10 insertions, 10 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5c6a4efc2..8e31f9e99 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,5 @@
-Next release
-============
+0.6.4 (2009-01-23)
+==================
Backwards Incompatibilities
---------------------------
@@ -10,17 +10,17 @@ Backwards Incompatibilities
``__getitem__`` methods as unicode. "True" has been the default for
this setting since 0.5.4, but changing this configuration setting to
false allowed you to go back to passing raw path element strings to
- model ``__getitem__`` methods. This services a speed goal (we get
- about +80 req/s by removing the check), and it's clearer just to
- always expect unicode path segments in model ``__getitem__``
- methods.
+ model ``__getitem__`` methods. Removal of this knob services a
+ speed goal (we get about +80 req/s by removing the check), and it's
+ clearer just to always expect unicode path segments in model
+ ``__getitem__`` methods.
Implementation Changes
----------------------
- ``repoze.bfg.traversal.split_path`` now also handles decoding
path segments to unicode (for speed, because its results are
- LRU cached).
+ cached).
- ``repoze.bfg.traversal.step`` was made a method of the
ModelGraphTraverser.
diff --git a/docs/conf.py b/docs/conf.py
index 2648559be..0ce7637f9 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.6.3'
+version = '0.6.4'
# The full version, including alpha/beta/rc tags.
-release = '0.6.3'
+release = '0.6.4'
# 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 da7c9a294..1ff97fd4d 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
#
##############################################################################
-__version__ = '0.6.3'
+__version__ = '0.6.4'
import os