summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-10-06 10:28:13 +0100
committerLars Wirzenius <liw@liw.fi>2012-10-06 10:28:13 +0100
commit7ae3886f48c31ee95957cf984accaa955af2831c (patch)
tree78de9fb3e9e215ba1a4888c3ae3201fa3ee3559e
parentf78e7654003d8c6b7836e2ac1e834cf4d259f114 (diff)
downloadlarch-1.20121006.tar.gz
Update version numbers for release of 1.20121006larch-1.20121006
-rw-r--r--NEWS4
-rw-r--r--debian/changelog4
-rw-r--r--larch/__init__.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 7bfb6e0..b6af004 100644
--- a/NEWS
+++ b/NEWS
@@ -4,8 +4,8 @@ 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.20121006
+------------------
* Critical bug fix: an indentation problem in the Python code was fixed.
A line was intended wrong, resulting it to not be included in the right
diff --git a/debian/changelog b/debian/changelog
index a5fa7ee..f32be1d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-python-larch (1.20120930-1) unstable; urgency=low
+python-larch (1.20121006-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, 30 Sep 2012 20:46:14 +0100
+ -- Lars Wirzenius <liw@liw.fi> Sat, 06 Oct 2012 10:27:20 +0100
python-larch (1.20120527-1) unstable; urgency=low
diff --git a/larch/__init__.py b/larch/__init__.py
index a11742f..011392b 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.20120930'
+__version__ = '1.20121006'
class Error(Exception):