summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--btree/__init__.py2
-rw-r--r--debian/changelog8
-rw-r--r--debian/control2
4 files changed, 18 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index fce854d..4dd9d64 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +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
+---------------------------------
+
+* Some speed optimizations.
+* The BTree objects no longer have a root_id attribute. Instead, use
+ BTree.root.id (if BTree.root is not None).
+
+
Version 0.11, released 2010-07-05
---------------------------------
diff --git a/btree/__init__.py b/btree/__init__.py
index 230e965..cb01a7a 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.11'
+version = '0.12'
from nodes import LeafNode, IndexNode
diff --git a/debian/changelog b/debian/changelog
index c5c48b5..74a750a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+python-btree (0.12) squeeze; urgency=low
+
+ * New upstream release.
+ * debian/control: Added Python-Version headers.
+ * debian/control: Bumped Standards-Version. No other changes required.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 11 Jul 2010 19:13:43 +1200
+
python-btree (0.11) squeeze; urgency=low
* New upstream release.
diff --git a/debian/control b/debian/control
index e2331fa..289df5e 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: python-btree
Maintainer: Lars Wirzenius <liw@liw.fi>
Section: python
Priority: optional
-Standards-Version: 3.8.4
+Standards-Version: 3.9.0
Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3),
python (>= 2.5), extrautils (>= 1.6), python-lru,
python-coverage-test-runner