summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-07-11 19:23:39 +1200
committerLars Wirzenius <liw@liw.fi>2010-07-11 19:23:39 +1200
commit996eaaf6a590096ecd65493cbf35d8c78b2d82aa (patch)
treee18df5383f7ac7328e6ba430914ab6116751b79c
parentc4a7f17faa512e580124506071c9be46b3962c84 (diff)
downloadobnam-996eaaf6a590096ecd65493cbf35d8c78b2d82aa.tar.gz
Prepare for release of version 0.12.
-rw-r--r--NEWS16
-rw-r--r--debian/changelog10
-rw-r--r--debian/control4
-rw-r--r--obnamlib/__init__.py2
-rw-r--r--setup.py2
5 files changed, 29 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 29ec0c43..65dee7e1 100644
--- a/NEWS
+++ b/NEWS
@@ -4,8 +4,22 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
+Version 0.12, released 2010-07-11; an ALPHA release
+----------------------------------------------------
+
+* NOTE: This version makes incompatible changes to the way data is stored
+ on-disk. Backups made with older versions are NOT supported. Sorry.
+* The run-benchmark script has dropped some smaller sizes (they're too
+ fast to be interesting), and adds a 10 GiB test size.
+* Various speed optimizations. Most importantly, the way file metadata
+ (results of lstat(2)) are encoded has changed. This is the incompatible
+ change from above. It's much faster now, though.
+* Preliminary support for using SFTP for the backup store added. Hasn't
+ been used much yet, so might well be very buggy.
+
+
Version 0.11, released 2010-07-05; an ALPHA release
----------------------------------...----------------
+----------------------------------------------------
* Speed optimizations:
- chunk identifiers are now sequential, except for the first one, or
diff --git a/debian/changelog b/debian/changelog
index a82a8cd7..8f9b5fc9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+obnam (0.12) squeeze; urgency=low
+
+ * New upstream release.
+ - speed optimizations, resulting in incompatible on-disk data structures
+ - preliminary SFTP support
+ * debian/control: Bumped Standards-Version. No other changed needed.
+ * debian/control: Bumped required version of python-btree.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 11 Jul 2010 19:07:33 +1200
+
obnam (0.11) squeeze; urgency=low
* New upstream release.
diff --git a/debian/control b/debian/control
index 2016232e..01e9f8ef 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: obnam
Maintainer: Lars Wirzenius <liw@liw.fi>
Section: python
Priority: optional
-Standards-Version: 3.8.4
+Standards-Version: 3.9.0
Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3),
python (>= 2.5), extrautils, python-coverage-test-runner,
python-btree (>= 0.10), python-all-dev, python-ttystatus
@@ -12,7 +12,7 @@ XS-Python-Version: >= 2.5
Package: obnam
Architecture: any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends},
- python (>= 2.5), python-btree (>= 0.10), python-ttystatus
+ python (>= 2.5), python-btree (>= 0.12), python-ttystatus
XB-Python-Version: ${python:Versions}
Description: online backup application
Obnam makes backups.
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index 336ccc33..e19eab54 100644
--- a/obnamlib/__init__.py
+++ b/obnamlib/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-version = '0.11'
+version = '0.12'
import _obnam
diff --git a/setup.py b/setup.py
index 9266a34a..b337418a 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ from distutils.core import setup, Extension
import glob
setup(name='obnam',
- version='0.11',
+ version='0.12',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',