summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-02-16 15:17:45 +0000
committerChris McDonough <chrism@agendaless.com>2009-02-16 15:17:45 +0000
commit42dd67d04c17a87bebd94bc7d8faca8ea1da9ac0 (patch)
tree7c17cd04ed92c47a9173e710cb6fd6935bffbb63
parent5b2abc88594d5b80e84ad62d1668618ea1d43d9f (diff)
downloadpyramid-42dd67d04c17a87bebd94bc7d8faca8ea1da9ac0.tar.gz
pyramid-42dd67d04c17a87bebd94bc7d8faca8ea1da9ac0.tar.bz2
pyramid-42dd67d04c17a87bebd94bc7d8faca8ea1da9ac0.zip
Prep for 0.6.9.
-rw-r--r--CHANGES.txt8
-rw-r--r--docs/conf.py4
-rw-r--r--setup.py2
3 files changed, 8 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a8bf2e500..7e83b1335 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,12 +1,14 @@
-Next Release
+0.6.9 (2009-02-16)
+==================
Bug Fixes
---------
-- lru cache was unstable under concurrency (big surprise) when it
+- lru cache was unstable under concurrency (big surprise!) when it
tried to redelete a key in the cache that had already been deleted.
Symptom: line 64 in put:del data[oldkey]:KeyError: '/some/path'.
- Now we just ignore the key error if we can't delete the key.
+ Now we just ignore the key error if we can't delete the key (it has
+ already been deleted).
- Empty location names in model paths when generating a URL using
``repoze.bfg.model_url`` based on a model obtained via traversal are
diff --git a/docs/conf.py b/docs/conf.py
index c39db7003..598e4f3b9 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.8'
+version = '0.6.9'
# The full version, including alpha/beta/rc tags.
-release = '0.6.8'
+release = '0.6.9'
# 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 4706bd0e0..82d780bf7 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
#
##############################################################################
-__version__ = '0.6.8'
+__version__ = '0.6.9'
import os