summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS16
-rw-r--r--debian/changelog12
-rw-r--r--debian/control4
-rw-r--r--obnamlib/__init__.py2
-rw-r--r--setup.py2
5 files changed, 32 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 65dee7e1..91159bb0 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,22 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
+
+Version 0.13, released 2010-07-13; an ALPHA release
+----------------------------------------------------
+
+* Bug fix: a mistake in 0.12 caused checkpoints to happen after each
+ file after the first checkpoint. Now they happen at the right intervals
+ again.
+* Upload speed is now displayed during backups.
+* Obnam now tells the kernel that it shouldn't cache data it reads or
+ writes. It is not likely that data being backed up is going to be
+ needed again any time soon, so there's no point in caching it.
+ (The posix_fadvise call is used for this.)
+* New --lru-size option sets size of LRU cache for nodes in memory.
+ The obnam default is large enough to suit large backups. This uses more
+ memory, but is faster than btree's small default of 100.
+
Version 0.12, released 2010-07-11; an ALPHA release
----------------------------------------------------
diff --git a/debian/changelog b/debian/changelog
index 8d0b4858..a4688a09 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+obnam (0.13) squeeze; urgency=low
+
+ * New upstream release.
+ - checkpointing bugfix
+ - upload speed displayed during backups
+ - posix_fadvise used when reading/writing data to local filesystem
+ - --lru-size option
+ * debian/control: Upgrade dependencies (run-time and build-time) for
+ python-btree and python-ttystatus.
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 13 Jul 2010 09:21:43 +1200
+
obnam (0.12.1) squeeze; urgency=low
* debian/control: Add python-paramiko as build and run-time dependency.
diff --git a/debian/control b/debian/control
index 1b92facf..1ddd7212 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Priority: optional
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,
+ python-btree (>= 0.13), python-all-dev, python-ttystatus (>= 0.6),
python-paramiko
Homepage: http://braawi.org/obnam/
XS-Python-Version: >= 2.5
@@ -13,7 +13,7 @@ XS-Python-Version: >= 2.5
Package: obnam
Architecture: any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends},
- python (>= 2.5), python-btree (>= 0.12), python-ttystatus,
+ python (>= 2.5), python-btree (>= 0.13), python-ttystatus (>= 0.6),
python-paramiko
XB-Python-Version: ${python:Versions}
Description: online backup application
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index 4fe47cd4..c31abaf3 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.12'
+version = '0.13'
import _obnam
diff --git a/setup.py b/setup.py
index 9a550431..349c919b 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ from distutils.core import setup, Extension
import glob
setup(name='obnam',
- version='0.12.1',
+ version='0.13',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',