summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-08-19 21:38:17 +0200
committerLars Wirzenius <liw@liw.fi>2015-08-19 21:38:17 +0200
commit20f5a4cfbf9d8b9f8facba05f92ced708b034814 (patch)
tree0c4262b6292e390460c3c7e65890d9d2d8133bef
parent8b39988d0cccff274a7bf7e36448dcc7216c2ea3 (diff)
downloadobnam-20f5a4cfbf9d8b9f8facba05f92ced708b034814.tar.gz
Prepare for release version 1.15obnam-1.15
-rw-r--r--NEWS5
-rw-r--r--debian/changelog8
-rw-r--r--obnamlib/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 15 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 1c2c317b..470628b0 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,11 @@ development, called `green-albatross`. It is **NOT** meant for real
use. It is likely to change in incompatible ways without warning. Do
not use it unless you're willing to lose your backup.
+Version 1.15, released 2015-08-19
+---------------------------------
+
+* Fixed a typo in a variable name ("netloc"), found by Dirk.
+
Version 1.14, released 2015-08-14
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index ac3a5b4f..ae4dffb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+obnam (1.15-1) unstable; urgency=medium
+
+ * Fix "obnam backup fails with NameError: global name 'netloc' is not
+ defined" <explain what you changed and why> (Closes: #796139)
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Wed, 19 Aug 2015 21:37:55 +0200
+
obnam (1.14-1) unstable; urgency=medium
* New upstream version.
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index e4ecfd0e..92d71afc 100644
--- a/obnamlib/__init__.py
+++ b/obnamlib/__init__.py
@@ -17,7 +17,7 @@
import cliapp
-__version__ = '1.14'
+__version__ = '1.15'
# Import _obnam if it is there. We need to be able to do things without
diff --git a/setup.py b/setup.py
index 5a7a98c6..1d4a41a4 100755
--- a/setup.py
+++ b/setup.py
@@ -294,7 +294,7 @@ class Check(Command):
setup(name='obnam',
- version='1.14',
+ version='1.15',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',