summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-03 16:09:25 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-03 16:09:25 +0100
commit234ba98caf5cc5042f18d829b46daf29138cf52a (patch)
treeba5cea64e53de9fa3bddd20512ddc1e9d4b10d45
parent042e1d6a88fb144cf26cdae567ebe393db365092 (diff)
parentf9584a9674bcee76bc81257c9d5e93e1158426b2 (diff)
downloadlarch-0.22.tar.gz
Release version 0.22.larch-0.22
-rw-r--r--NEWS8
-rw-r--r--debian/changelog6
-rw-r--r--larch/__init__.py2
3 files changed, 15 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 9083fa3..ac45a6b 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,14 @@ These are the release notes for larch, a Python implementation of a
copy-on-write B-tree, designed by Odah Rodeh.
+Version 0.22, released 2011-08-03
+---------------------------------
+
+* The library now declares which on-disk format it supports, so that B-trees
+ stored with an incompatible format can be detected.
+* `fsck-larch` now has a `--trace` option, and the library has a bit more
+ tracing statements.
+
Version 0.21, released 2011-08-02
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index c2b310f..d4008e4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-larch (0.22-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Wed, 03 Aug 2011 15:44:57 +0100
+
python-larch (0.21-1) unstable; urgency=low
* New upstream release.
diff --git a/larch/__init__.py b/larch/__init__.py
index cb3f8a6..6758385 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.21'
+__version__ = '0.22'
from nodes import FrozenNode, Node, LeafNode, IndexNode