summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--README6
-rw-r--r--debian/changelog6
-rw-r--r--larch/__init__.py2
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: <http://code.liw.fi/larch/bugs/>
+See <http://liw.fi/larch/bugs/> 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 <liw@liw.fi> 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 <http://www.gnu.org/licenses/>.
-__version__ = '0.30'
+__version__ = '0.31'
class Error(Exception):