From 62a91e6d140233658b9aa6930dc4285272e1a109 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 8 May 2012 22:31:17 +0100 Subject: Release version 0.31 --- NEWS | 3 ++- README | 6 +----- debian/changelog | 6 ++++++ larch/__init__.py | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index 2122c0a..5771b5c 100644 --- a/NEWS +++ b/NEWS @@ -4,13 +4,14 @@ 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.31, released UNRELEASED +Version 0.31, released 2012-05-08 --------------------------------- * Optimize journal use to have fewer round-trips. This matters when the journal is stored on a high-latency storage, such as an SFTP server. * Now handles better missing key or node sizes in the metadata. * All exceptions thrown by larch are now subclasses of `larch.Error`. +* The on-disk format is now frozen. Version 0.30, released 2012-04-29 --------------------------------- diff --git a/README b/README index 1a0e581..87f6b7f 100644 --- a/README +++ b/README @@ -92,11 +92,7 @@ branch of your own and send me a URL, and I'll merge from that. Bugs and other things to hack ----------------------------- -There is an [SD](http://syncwith.us/sd/) bug repository for larch. -I try to keep it up to date with regards to bugs and wishlist items, -etc. - -* Bugs in SD: +See for the bug tracker. If you're interested in hacking the larch code, speed improvements are always interesting. See the bug tracker for things known to be diff --git a/debian/changelog b/debian/changelog index 1469fcb..e46b241 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-larch (0.31-1) unstable; urgency=low + + * New upstream version. + + -- Lars Wirzenius Tue, 08 May 2012 22:30:10 +0100 + python-larch (0.30-1) unstable; urgency=low * New upstream release. diff --git a/larch/__init__.py b/larch/__init__.py index ef1885a..dbc3653 100644 --- a/larch/__init__.py +++ b/larch/__init__.py @@ -14,7 +14,7 @@ # along with this program. If not, see . -__version__ = '0.30' +__version__ = '0.31' class Error(Exception): -- cgit v1.2.1