summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS16
-rw-r--r--btree/__init__.py2
-rw-r--r--debian/changelog6
3 files changed, 23 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 777af13..fce854d 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,22 @@ These are the release notes for btree, a Python implementation of a
copy-on-write tree, designed by Odah Rodeh.
+Version 0.11, released 2010-07-05
+---------------------------------
+
+* Now includes a small example program, written for the Wellington Python
+ User Group meeting where the first talk about this library was given.
+* `NodeStoreDisk` stores nodes in a simple directory hierarchy, instead of
+ a flat one, to better handle very large trees.
+* `NodeStoreDisk` now has a much larger default upload queue size (now 1024,
+ was 64), to better handle large trees.
+* `speed-test` now also tests `remove` and `remove_range` methods. Further,
+ it reports both CPU and wall clock timings, and has been refactored a bit.
+ Results for `lookup_range` are no longer comparable with old versions,
+ since the measured scenario has changed.
+* `remove_range` has been rewritten and is now much faster.
+
+
Version 0.10, released 2010-06-29
---------------------------------
diff --git a/btree/__init__.py b/btree/__init__.py
index 90511ee..230e965 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.10'
+version = '0.11'
from nodes import LeafNode, IndexNode
diff --git a/debian/changelog b/debian/changelog
index f6944f0..c5c48b5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-btree (0.11) squeeze; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Mon, 05 Jul 2010 17:27:50 +1200
+
python-btree (0.10) squeeze; urgency=low
* New upstream release.