summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-04-29 20:33:18 +0100
committerLars Wirzenius <liw@liw.fi>2012-04-29 20:33:18 +0100
commitf86d38b18bb36c9f109f6bd8d6a46be250dfc5b7 (patch)
tree37519f7d34659b9926d4b7d1c043195913d0ba87
parent4fe28031e7296e1c5270e94b2097acf7d063d094 (diff)
downloadlarch-f86d38b18bb36c9f109f6bd8d6a46be250dfc5b7.tar.gz
Prepare for release 0.30larch-0.30
-rw-r--r--NEWS2
-rw-r--r--debian/changelog6
-rw-r--r--larch/__init__.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index ae871f6..632d616 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ NEWS for larch
These are the release notes for larch, a Python implementation of a
copy-on-write B-tree, designed by Odah Rodeh.
-Version 0.30, released UNRELEASED
+Version 0.30, released 2012-04-29
---------------------------------
* `NodeStoreDisk` is now explicitly in read-only or read-write mode.
diff --git a/debian/changelog b/debian/changelog
index b6cd941..1469fcb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-larch (0.30-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 29 Apr 2012 20:32:49 +0100
+
python-larch (0.29-1) unstable; urgency=low
* New upstream release.
diff --git a/larch/__init__.py b/larch/__init__.py
index 52b02d4..91fa40f 100644
--- a/larch/__init__.py
+++ b/larch/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-__version__ = '0.29'
+__version__ = '0.30'
from nodes import FrozenNode, Node, LeafNode, IndexNode