summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-09-17 20:08:10 +0100
committerLars Wirzenius <liw@liw.fi>2011-09-17 20:08:10 +0100
commit16954a73a2fab7b2a726a213c7b34bbb485d0522 (patch)
treed4b7f8650461f297298201425a3d757439e15de7
parentd7c8add9b2186578d7bd9bf92d10a5ebd160b5e3 (diff)
downloadlarch-0.24.tar.gz
Release version 0.24.larch-0.24
-rw-r--r--NEWS4
-rw-r--r--debian/changelog2
-rw-r--r--larch/__init__.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index bde33b8..7efc5b6 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,10 @@ 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.24, released 2011-09-17
+---------------------------------
+
+* Debian packaging install the fsck-larch manual page.
Version 0.23, released 2011-08-19
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index e8b037e..e4b26a4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-python-larch (0.23-2) unstable; urgency=low
+python-larch (0.24-1) unstable; urgency=low
* Install fsck-larch manpage.
* Weaken python-ttystatus dependency to a recommends, since it's only
diff --git a/larch/__init__.py b/larch/__init__.py
index f97d46d..87ab49b 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.23'
+__version__ = '0.24'
from nodes import FrozenNode, Node, LeafNode, IndexNode