summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-11-30 09:52:17 +0000
committerLars Wirzenius <liw@liw.fi>2013-11-30 09:52:17 +0000
commit8906a60cf694568f677467391f921b4d1c72111d (patch)
tree1e264d91ed90c262da5ee64bf8f922cb9f5423fe
parentbb504dd92cbe44ff157e46f44ed44ff2a24f467e (diff)
downloadlarch-8906a60cf694568f677467391f921b4d1c72111d.tar.gz
Prepare release 1.20131130larch-1.20131130
-rw-r--r--NEWS2
-rw-r--r--README9
-rw-r--r--debian/changelog6
-rw-r--r--larch/__init__.py2
4 files changed, 12 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index f2e8276..2879630 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 1.UNRELEASED
+Version 1.20131130
------------------
* Serious bug fixed: the "KeyError" crash for reference counts. This
diff --git a/README b/README
index 4fd4a29..c6786e5 100644
--- a/README
+++ b/README
@@ -30,7 +30,7 @@ also be useful. (Help and feedback and prodding welcome!)
See the file example.py for an example.
* Homepage: <http://liw.fi/larch/>
-* Version control: `bzr get http://code.liw.fi/larch/bzr/trunk/`
+* Version control: `git clone git://git.liw.fi/larch`
* Rodeh paper: <http://liw.fi/larch/ohad-btrees-shadowing-clones.pdf>
@@ -98,8 +98,8 @@ You may want to run either or both before and after making any changes,
to see if you're making things better or worse.
If you have any patches, please send them to me (<mailto:liw@liw.fi>).
-Bzr bundles preferred, but plain diffs are always OK. Or set up a bzr
-branch of your own and send me a URL, and I'll merge from that.
+I prefer to merge from git repositories, but `git format-patch` or
+just plain diffs are always OK.
Bugs and other things to hack
@@ -116,7 +116,7 @@ to see where time is wasted.
Legalese
--------
-Copyright 2010, 2011, 2012 Lars Wirzenius
+Copyright 2010, 2011, 2012, 2013 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
@@ -130,4 +130,3 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-
diff --git a/debian/changelog b/debian/changelog
index 85676e6..24b82f0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-larch (1.20131130-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 30 Nov 2013 09:50:25 +0000
+
python-larch (1.20130808-1) unstable; urgency=low
* New upstream release.
diff --git a/larch/__init__.py b/larch/__init__.py
index 691d107..0d8a12e 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.20130808'
+__version__ = '1.20131130'
class Error(Exception):