summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--btree/__init__.py2
-rw-r--r--debian/changelog8
3 files changed, 19 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 3b710de..67bdd9b 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,16 @@ These are the release notes for btree, a Python implementation of a
copy-on-write B-tree, designed by Odah Rodeh.
+Version 0.16.2, released 2011-01-07
+---------------------------------
+
+* Really fix problems with nodes growing too big while in the upload
+ queue. The previous fixes meant well, but didn't really do the trick.
+ Now we stop modifying nodes at all while in the upload queue, which
+ is good for several reasons. Performance in this release degrades
+ a lot, until there is time to optimize the code. However, correctness
+ is more important than performance.
+
Version 0.16.1, released 2011-01-07
---------------------------------
diff --git a/btree/__init__.py b/btree/__init__.py
index c4fd7d4..96bdbb0 100644
--- a/btree/__init__.py
+++ b/btree/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-version = '0.16.1'
+version = '0.16.2'
from nodes import FrozenNode, LeafNode, IndexNode
diff --git a/debian/changelog b/debian/changelog
index ec54893..632fce3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+python-btree (0.16.2) squeeze; urgency=low
+
+ * New upstream release.
+ - fix all problems with modifying nodes while they are in the upload queue
+ - performance has degraded
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 30 Jan 2011 09:51:40 +0000
+
python-btree (0.16.1) squeeze; urgency=low
* New upstream release.