summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--debian/changelog4
-rw-r--r--debian/control23
-rw-r--r--obnamlib/__init__.py2
-rw-r--r--setup.py2
5 files changed, 18 insertions, 15 deletions
diff --git a/NEWS b/NEWS
index dd9949b0..650544be 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
-Version 1.1, released UNRELEASED
+Version 1.1, released 2012-06-30
--------------------------------
* Mark the `--small-files-in-btree` settings as deprecated.
diff --git a/debian/changelog b/debian/changelog
index 9fe52763..1797c32f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-obnam (1.UNRELEASED) unstable; urgency=low
+obnam (1.1-1) unstable; urgency=low
* New upstream version.
- man page unclear about scp url format (Closes: #678742)
- manpage : example for keeping policies (Closes: #678628)
- manpage unclear about exclude pattern (Closes: #679016)
- * debian/control: Bump python-ttystatus dependencies to 0.18.
+ * debian/control: Update all build and runtime dependencies.
* debian/control: Drop build-dependency on libattr1-dev, since we now
use the header provided by glibc instead.
diff --git a/debian/control b/debian/control
index d027508f..0f9fb8b5 100644
--- a/debian/control
+++ b/debian/control
@@ -5,16 +5,16 @@ Priority: optional
Standards-Version: 3.9.3
Build-Depends: debhelper (>= 7.3.8),
python-all-dev (>= 2.6.3~3),
- python-coverage-test-runner,
- python-larch (>= 0.30~),
- python-ttystatus (>= 0.18),
+ python-coverage-test-runner (>= 1.8~),
+ python-larch (>= 1.20120527~),
+ python-ttystatus (>= 0.19~),
python-paramiko,
- python-tracing (>= 0.2),
+ python-tracing (>= 0.6~),
fakeroot,
- python-cliapp (>= 0.29),
- genbackupdata,
- summain,
- cmdtest,
+ python-cliapp (>= 1.20120630~),
+ genbackupdata (>= 1.6~),
+ summain (>= 0.14~),
+ cmdtest (>= 0.3~),
attr
Homepage: http://braawi.org/obnam/
X-Python-Version: >= 2.6
@@ -23,8 +23,11 @@ Package: obnam
Provides: python-obnam
Architecture: linux-any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends},
- python-larch (>= 0.30~), python-ttystatus (>= 0.18),
- python-paramiko, python-tracing (>= 0.2), python-cliapp (>= 0.29)
+ python-larch (>= 1.20120527~),
+ python-ttystatus (>= 0.19~),
+ python-paramiko,
+ python-tracing (>= 0.6~),
+ python-cliapp (>= 1.20120630~)
Description: online and disk-based backup application
Obnam makes backups. Backups can be stored on local hard disks, or online
via the SSH SFTP protocol. The backup server, if used, does not require any
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index 44c016d6..f22923e7 100644
--- a/obnamlib/__init__.py
+++ b/obnamlib/__init__.py
@@ -17,7 +17,7 @@
import cliapp
-__version__ = '1.0'
+__version__ = '1.1'
diff --git a/setup.py b/setup.py
index 9d63bb83..b46f12e6 100644
--- a/setup.py
+++ b/setup.py
@@ -135,7 +135,7 @@ class Check(Command):
setup(name='obnam',
- version='1.0',
+ version='1.1',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',