summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-09-30 20:46:43 +0100
committerLars Wirzenius <liw@liw.fi>2012-09-30 20:46:43 +0100
commit172b2cd7592b1923e791296c40e2591a7aa83c08 (patch)
tree334483bed31fbf31a86427bb7f2475081828930b
parent4e641c60335da8405c04a9aa137fb16d42459d5c (diff)
downloadlarch-172b2cd7592b1923e791296c40e2591a7aa83c08.tar.gz
Prepare release version 1.20120930
-rw-r--r--NEWS5
-rw-r--r--debian/changelog5
-rw-r--r--larch/__init__.py2
3 files changed, 9 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 8cb8a8c..135e3c5 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,11 @@ 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 1.20120920, released 2012-09-30
+---------------------------------------
+
+*
+
Version 1.20120527, released 2012-05-27
---------------------------------------
diff --git a/debian/changelog b/debian/changelog
index 23965a7..a5fa7ee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,11 @@
-python-larch (1.20120527-1) UNRELEASED; urgency=low
+python-larch (1.20120930-1) unstable; urgency=low
* New upstream release.
- Fix "UnboundLocalError: local variable 'new_node' referenced before
assignment" (Closes: #675818)
+ * debian/control: Add missing build-dependency on cmdtest.
- -- Lars Wirzenius <liw@liw.fi> Sun, 17 Jun 2012 12:02:47 +0100
+ -- Lars Wirzenius <liw@liw.fi> Sun, 30 Sep 2012 20:46:14 +0100
python-larch (1.20120527-1) unstable; urgency=low
diff --git a/larch/__init__.py b/larch/__init__.py
index 7295bec..a11742f 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.20120527'
+__version__ = '1.20120930'
class Error(Exception):