summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-07-05 17:41:39 +1200
committerLars Wirzenius <liw@liw.fi>2010-07-05 17:41:39 +1200
commit945f38a5896b685de48bb1d04bfb9ab9e67ec793 (patch)
treeb009f9927ee1b4ee3424b9a0fc6b2b3db0998731
parent8e5397052da01a3811acc92ff6a44c4f1237877e (diff)
downloadobnam-945f38a5896b685de48bb1d04bfb9ab9e67ec793.tar.gz
Prepare for 0.11 release.
-rw-r--r--NEWS24
-rw-r--r--debian/changelog8
-rw-r--r--obnamlib/__init__.py2
3 files changed, 33 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 5d8cd981..29ec0c43 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,30 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
+Version 0.11, released 2010-07-05; an ALPHA release
+---------------------------------...----------------
+
+* Speed optimizations:
+ - chunk identifiers are now sequential, except for the first one, or
+ when there's a collision
+ - chunks are now stored in a more sensible directory hierarchy (instead
+ of one per directory, on average)
+ - adding files to a directory in the backup store is now faster
+ - only store a file's metadata that if it is changed
+* New --exclude=regexp option to exclude files based on pathnames
+* Obnam now makes checkpoints during backups. If a backup is aborted
+ in the middle and then re-started, it will continue from the latest
+ checkpoint rather than from the beginning of the previous backup run.
+ - New option --checkpoint to set the interval between checkpoints.
+ Defaults to 1 GiB.
+* Options for various B-tree settings. This is mostly useful for finding
+ the optimal set of defaults, but may be useful in other situations for
+ some people.
+ - New options --chunk-group-size, --chunk-size, --node-size,
+ --upload-queue-size.
+* Somewhat better progress reporting during backups.
+
+
Version 0.10, released 2010-06-29; an ALPHA release
---------------------------------------------------
diff --git a/debian/changelog b/debian/changelog
index 01b7b708..a82a8cd7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+obnam (0.11) squeeze; urgency=low
+
+ * New upstream release.
+ - speed optimizations
+ - some new options
+
+ -- Lars Wirzenius <liw@liw.fi> Mon, 05 Jul 2010 17:04:08 +1200
+
obnam (0.10) squeeze; urgency=low
* Initial packaging. This is not intended to be uploaded to Debian, so
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index c7cd310b..7c0963c1 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.10'
+version = '0.11'
import _obnam