summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-10-25 12:32:45 +0200
committerLars Wirzenius <liw@liw.fi>2015-10-25 12:32:45 +0200
commitcb67409349f8aabd7265836a2fba8d5491f7e97a (patch)
treeeb0f026cb9a3f1ec86f9351dc3d65229325cf83f
parent675fc3d404db34f4e2bbe886d58ea36d1d940bb8 (diff)
downloadlarch-cb67409349f8aabd7265836a2fba8d5491f7e97a.tar.gz
Prepare release 1.20151025larch-1.20151025
-rw-r--r--NEWS3
-rw-r--r--debian/changelog4
-rw-r--r--larch/__init__.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 6b30ef1..055fa1a 100644
--- a/NEWS
+++ b/NEWS
@@ -4,10 +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 UNRELEASED
+Version 1.20151025
------------------
* Test suite improvement: fsck tests by Antoine Brenner.
+* Debian packaging improvements.
Version 1.20131130
------------------
diff --git a/debian/changelog b/debian/changelog
index 0383585..e2e0a5b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-python-larch (1.XXXXX-1) UNRELEASED; urgency=low
+python-larch (1.20151025-1) unstable; urgency=low
* New upstream version.
* debian/control: Add Homepage: to source stanza.
@@ -6,7 +6,7 @@ python-larch (1.XXXXX-1) UNRELEASED; urgency=low
changes required.
* Change source format to 3.0 (quilt).
- -- Lars Wirzenius <liw@liw.fi> Sat, 29 Mar 2014 12:42:21 +0000
+ -- Lars Wirzenius <liw@liw.fi> Sun, 25 Oct 2015 12:32:05 +0200
python-larch (1.20131130-1) unstable; urgency=low
diff --git a/larch/__init__.py b/larch/__init__.py
index 0d8a12e..05edaa2 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.20131130'
+__version__ = '1.20151025'
class Error(Exception):