summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-07-02 09:56:09 +0300
committerLars Wirzenius <liw@liw.fi>2015-07-02 09:56:09 +0300
commit1db7bab7bb68a497d14fb69b74e3b32a19615bbc (patch)
treead672056fd7bde043a89ef00167204fd1a59ddb5
parentef5108b4d153b98be3b96388fb29becce1ce0827 (diff)
downloadobnam-1db7bab7bb68a497d14fb69b74e3b32a19615bbc.tar.gz
Include fmt_ga in setup.py
-rw-r--r--NEWS6
-rw-r--r--debian/changelog6
-rw-r--r--obnamlib/__init__.py2
-rwxr-xr-xsetup.py3
4 files changed, 15 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index a7eb2794..31639d96 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,12 @@ Obnam NEWS
This file summarizes changes between releases of Obnam.
+Version 1.10.1, released 2015-07-02
+-----------------------------------
+
+* The 1.10 release failed to correctly include the Green Albatross
+ code, due to a missing line in `setup.py`. This has been fixed.
+
Version 1.10, released 2015-07-01
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index e78aa498..01f2ea8f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+obnam (1.10.1) unstable; urgency=medium
+
+ * New upstream version. Fixes the "import fmt_ga" failure.
+
+ -- Lars Wirzenius <liw@liw.fi> Thu, 02 Jul 2015 09:55:26 +0300
+
obnam (1.10-1) unstable; urgency=medium
* New upstream version.
diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py
index 09f622c3..f83bd62d 100644
--- a/obnamlib/__init__.py
+++ b/obnamlib/__init__.py
@@ -17,7 +17,7 @@
import cliapp
-__version__ = '1.10'
+__version__ = '1.10.1'
diff --git a/setup.py b/setup.py
index 46cec05a..9742844c 100755
--- a/setup.py
+++ b/setup.py
@@ -288,7 +288,7 @@ class Check(Command):
setup(name='obnam',
- version='1.10',
+ version='1.10.1',
description='Backup software',
author='Lars Wirzenius',
author_email='liw@liw.fi',
@@ -298,6 +298,7 @@ setup(name='obnam',
'obnamlib',
'obnamlib.plugins',
'obnamlib.fmt_6',
+ 'obnamlib.fmt_ga',
'obnamlib.fmt_simple'
],
ext_modules=[Extension('obnamlib._obnam', sources=['_obnammodule.c'])],