summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-10-02 21:52:30 +0100
committerLars Wirzenius <liw@liw.fi>2011-10-02 21:52:30 +0100
commit6d9325f7cef2b446b77066726d4de87bce000c0a (patch)
tree08c93fbd6251f1c862e52c3b83553b1d26436371
parent5d6cf8813addef367ccb8171eeea07d0ac5faad9 (diff)
downloadobnam-0.23.tar.gz
Release version 0.23.obnam-0.23
-rw-r--r--NEWS11
-rw-r--r--debian/changelog4
-rw-r--r--debian/control4
-rw-r--r--obnamlib/__init__.py2
-rw-r--r--setup.py2
5 files changed, 17 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index c0e92aaf..4d09e65c 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
-Version 0.23, released UNRELEASED; a BETA release
+Version 0.23, released 2011-10-02; a BETA release
-------------------------------------------------
USER VISIBLE CHANGES:
@@ -23,11 +23,20 @@ USER VISIBLE CHANGES:
* The `--fsck-fix` option will now instruct `obnam fsck` to try to fix
problems found. For this release, it only means fixing B-tree missing
node problems, but more will follow.
+* The default sizes have been changed for B-tree nodes (256 KiB)
+ and file contents chunks (1 MiB), based on benchmarking.
+* SFTP protocol use has been optimized, which should result in some
+ more speed. This also highlights the need to change obnam so it can
+ do uploads in the background.
+* If a client does not exist in the repository, `force-lock` now gives
+ a warning to the user, rather than ignoring it silently.
DEVELOPER CHANGES:
* New `--sftp-delay=100` option can be used to simulate SFTP backups over
networks with long round trip times.
+* `obnam-benchmark` can now use `--sftp-delay` and other changes to make
+ it more useful.
INTERNAL CHANGES:
diff --git a/debian/changelog b/debian/changelog
index 05a2305c..8fe2fe7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,9 @@
-obnam (0.23-1) UNRELEASED; urgency=low
+obnam (0.23-1) unstable; urgency=low
+ * New upstream release.
* debian/control: Depend on newer ttystatus for fix to zero division
bug, and non-string values for String widget.
+ * debian/control: Update versioned dependency for python-larch to 0.25.
-- Lars Wirzenius <liw@liw.fi> Wed, 31 Aug 2011 00:19:36 +0100
diff --git a/debian/control b/debian/control
index 8636ba13..6ae525d8 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Standards-Version: 3.9.2
Build-Depends: debhelper (>= 7.3.8),
python-all-dev (>= 2.6.3~3),
python-coverage-test-runner,
- python-larch (>= 0.21~),
+ python-larch (>= 0.25~),
python-ttystatus (>= 0.15),
python-paramiko,
python-tracing (>= 0.2),
@@ -19,7 +19,7 @@ Package: obnam
Provides: python-obnam
Architecture: any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends},
- python-larch (>= 0.21~), python-ttystatus (>= 0.15),
+ python-larch (>= 0.25~), python-ttystatus (>= 0.15),
python-paramiko, python-tracing (>= 0.2), python-cliapp (>= 0.18)
Description: online and disk-based backup application
Obnam makes backups. Backups can be stored on local hard disks, or online
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index ba9f68a8..ac3c5067 100644
--- a/obnamlib/__init__.py
+++ b/obnamlib/__init__.py
@@ -17,7 +17,7 @@
import cliapp
-__version__ = '0.22'
+__version__ = '0.23'
diff --git a/setup.py b/setup.py
index 9014e48c..abc6e4d8 100644
--- a/setup.py
+++ b/setup.py
@@ -90,7 +90,7 @@ class Check(Command):
setup(name='obnam',
- version='0.22',
+ version='0.23',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',