summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-08-08 21:51:20 +0100
committerLars Wirzenius <liw@liw.fi>2013-08-08 21:51:20 +0100
commitbbd34c05cab63b9d6845538308757c348e1a16f6 (patch)
treeb8d19e79051899a100427b32e8f658da71a7549c
parent4c342127b07571f395b69c91538c502d9f95f630 (diff)
downloadlarch-bbd34c05cab63b9d6845538308757c348e1a16f6.tar.gz
Prepare release version 1.20130808larch-1.20130808
-rw-r--r--NEWS2
-rw-r--r--debian/changelog6
-rw-r--r--larch/__init__.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 85d867a..9525fc2 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ NEWS for larch
These are the release notes for larch, a Python implementation of a
copy-on-write B-tree, designed by Ohad Rodeh.
-Version UNRELEASED
+Version 1.20130808
------------------
* Bug fix in how Larch handles partly-comitted B-tree journals
diff --git a/debian/changelog b/debian/changelog
index 5df232d..85676e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-larch (1.20130808-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Thu, 08 Aug 2013 21:51:05 +0100
+
python-larch (1.20130316-1) unstable; urgency=low
* New upstream release.
diff --git a/larch/__init__.py b/larch/__init__.py
index 0f51f09..691d107 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__ = '1.20130316'
+__version__ = '1.20130808'
class Error(Exception):