summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-07-13 09:18:19 +1200
committerLars Wirzenius <liw@liw.fi>2010-07-13 09:18:19 +1200
commit4192ae43e6231abf89c858bf56f1d7a7bb0b280d (patch)
tree6f0db9d218cf1353111187cfc477eb4b311ddf8f
parent783c548caaecf7d2b06a15a0c664a49b888fa05c (diff)
downloadlarch-4192ae43e6231abf89c858bf56f1d7a7bb0b280d.tar.gz
Prepare for version 0.13.version_0_13
-rw-r--r--NEWS9
-rw-r--r--btree/__init__.py2
-rw-r--r--debian/changelog7
3 files changed, 16 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4dd9d64..ce09cd0 100644
--- a/NEWS
+++ b/NEWS
@@ -5,7 +5,14 @@ These are the release notes for btree, a Python implementation of a
copy-on-write tree, designed by Odah Rodeh.
-Version 0.12, released 2010-07-05
+Version 0.13, released 2010-07-13
+---------------------------------
+
+* Speed-related improvement: The size of NodeStoreDisk's LRU cache for
+ nodes is now user-settable.
+
+
+Version 0.12, released 2010-07-11
---------------------------------
* Some speed optimizations.
diff --git a/btree/__init__.py b/btree/__init__.py
index cb01a7a..ce3c50c 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.12'
+version = '0.13'
from nodes import LeafNode, IndexNode
diff --git a/debian/changelog b/debian/changelog
index 74a750a..92d6227 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-btree (0.13) squeeze; urgency=low
+
+ * New upstream release.
+ - NodeStoreDisk's LRU cache size is user settable
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 13 Jul 2010 09:15:33 +1200
+
python-btree (0.12) squeeze; urgency=low
* New upstream release.