From 5a5aad35d2124843816e79b1e1fb1c0a04fcfee1 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 9 Aug 2011 11:31:04 +0100 Subject: Bump version number. --- obnamlib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py index 25ccdd1f..5d1b6eca 100644 --- a/obnamlib/__init__.py +++ b/obnamlib/__init__.py @@ -17,7 +17,7 @@ import cliapp -__version__ = '0.19' +__version__ = '0.20' import _obnam -- cgit v1.2.1 From af84e40213c5099d019a59349b12c4016c9daf26 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 9 Aug 2011 11:34:00 +0100 Subject: Update NEWS for release. --- NEWS | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3f597224..6349ad66 100644 --- a/NEWS +++ b/NEWS @@ -5,13 +5,15 @@ Obnam NEWS This file summarizes changes between releases of Obnam. -Version 0.20, released UNRELEASED; a BETA release +Version 0.20, released 2011-08-09; a BETA release ------------------------------------------------- BUG FIXES: * Non-ASCII filenames over SFTP root now work. (Thanks, Tapani Tarvainen, for the reproducible bug report.) +* The count of files while making a backup now counts all files found, + not just those backed up. The old behavior was confusing people. USER VISIBLE CHANGES: -- cgit v1.2.1 From 90df99d41f701dcee117a7baf86f5b0c3de2cbb3 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 9 Aug 2011 11:34:28 +0100 Subject: Update debian/changelog for release. --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index bd40e587..e99f97f7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +obnam (0.20-1) squeeze; urgency=low + + * New upstream version. + + -- Lars Wirzenius Tue, 09 Aug 2011 11:34:12 +0100 + obnam (0.19-1) squeeze; urgency=low * New upstream release. -- cgit v1.2.1 From d13b2ae84313f4b30b2091cd839af6fc361e0bca Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 9 Aug 2011 11:40:28 +0100 Subject: Update setup.py for release. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e24c351d..afbfc14e 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from distutils.core import setup, Extension import glob setup(name='obnam', - version='0.19', + version='0.20', description='Backup software', author='Lars Wirzenius', author_email='liw@liw.fi', -- cgit v1.2.1 From 97bd62512299eabc112b697a546d93d718c3ab17 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 9 Aug 2011 11:48:46 +0100 Subject: Fix test to run even in C locale. --- obnamlib/vfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obnamlib/vfs.py b/obnamlib/vfs.py index 48ed46a5..2c68e1b9 100644 --- a/obnamlib/vfs.py +++ b/obnamlib/vfs.py @@ -374,7 +374,7 @@ class VfsTests(object): # pragma: no cover self.assert_(self.fs.isdir('foo')) def test_listdir_returns_plain_strings_only(self): - self.fs.write_file(u'M\u00E4kel\u00E4', 'data') + self.fs.write_file(u'M\u00E4kel\u00E4'.encode('utf-8'), 'data') names = self.fs.listdir('.') types = [type(x) for x in names] self.assertEqual(types, [str]) -- cgit v1.2.1