summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-04-15 20:16:21 +0100
committerLars Wirzenius <liw@liw.fi>2012-04-15 20:16:21 +0100
commit7b377503897b07806590d751b816534ca9a4d38b (patch)
tree478266ed03c70cd2ffaff93c9e16f8a81fc75a0d
parent36a8930f76086bbf625ee8b0ea6fe7df8a837c17 (diff)
downloadlarch-7b377503897b07806590d751b816534ca9a4d38b.tar.gz
Prepare for release 0.29larch-0.29
-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 ce6ccce..f9a80c0 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.29, released UNRELEASED
+Version 0.29, released 2012-04-15
---------------------------------
* Larch now uses the `larch.FormatProblemĀ“ exception when an on-disk
diff --git a/debian/changelog b/debian/changelog
index c8a3444..b6cd941 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-larch (0.29-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 15 Apr 2012 20:15:54 +0100
+
python-larch (0.28-1) unstable; urgency=low
* New upstream release.
diff --git a/larch/__init__.py b/larch/__init__.py
index e13328b..cc83b85 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.28'
+__version__ = '0.29'
from nodes import FrozenNode, Node, LeafNode, IndexNode