summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-05-27 11:44:12 +0200
committerLars Wirzenius <liw@liw.fi>2012-05-27 11:44:12 +0200
commit75c884f4212e55c73c6a7998587720b1d5b8a01b (patch)
tree6f229cb71ac0ed9321d131ec5ce27cffe09be416
parentc6d09be73eea8139fe000581f2a029587d97707d (diff)
downloadlarch-1.20120527.tar.gz
Release version 1.20120527larch-1.20120527
-rw-r--r--NEWS7
-rw-r--r--debian/changelog9
-rw-r--r--larch/__init__.py4
-rw-r--r--setup.py2
4 files changed, 15 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index a143dcc..068a0f8 100644
--- a/NEWS
+++ b/NEWS
@@ -4,14 +4,13 @@ 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 1.UNRELEASED, released UNRELEASED
------------------------------------------
+Version 1.20120527, released 2012-05-27
+---------------------------------------
-* New version scheme.
+* New version scheme. Thank you, Joey Hess.
* The on-disk data structures and file formats are now declared frozen.
An automatic test has been added to verify that things do not break.
-
Version 0.31, released 2012-05-08
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index e46b241..6185d47 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+python-larch (1.20120527-1) unstable; urgency=low
+
+ * New upstream release.
+ - New version scheme. Thank you, Joey Hess.
+ - The on-disk data structures and file formats are now declared frozen.
+ An automatic test has been added to verify that things do not break.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 27 May 2012 11:42:28 +0200
+
python-larch (0.31-1) unstable; urgency=low
* New upstream version.
diff --git a/larch/__init__.py b/larch/__init__.py
index dbc3653..7295bec 100644
--- a/larch/__init__.py
+++ b/larch/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2010, 2011 Lars Wirzenius
+# Copyright 2010, 2011, 2012 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-__version__ = '0.31'
+__version__ = '1.20120527'
class Error(Exception):
diff --git a/setup.py b/setup.py
index 522b862..64bc442 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-# Copyright 2010 Lars Wirzenius
+# Copyright 2010, 2011, 2012 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by