From 42dd67d04c17a87bebd94bc7d8faca8ea1da9ac0 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 16 Feb 2009 15:17:45 +0000 Subject: Prep for 0.6.9. --- CHANGES.txt | 8 +++++--- docs/conf.py | 4 ++-- setup.py | 2 +- 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 -- cgit v1.2.3