summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS14
-rw-r--r--debian/changelog7
-rw-r--r--setup.py4
3 files changed, 23 insertions, 2 deletions
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..1aaedcf
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,14 @@
+NEWS for genbackupdata
+======================
+
+Version 1.3.1, released 2011-02-02
+----------------------------------
+
+* Fix setup.py so that the genbackupdatalib Python library is
+ included in the package.
+
+Version 1.3, released 2011-02-01
+--------------------------------
+
+* Rewrite from scratch, becaue the old code was hard to test.
+ It was also full of features nobody uses. New code is small.
diff --git a/debian/changelog b/debian/changelog
index bedb9a7..470f521 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+genbackupdata (1.3.1) squeeze; urgency=low
+
+ * New upstream release.
+ - include genbackupdatalib in the package
+
+ -- Lars Wirzenius <liw@liw.fi> Wed, 02 Feb 2011 17:25:16 +0000
+
genbackupdata (1.3) squeeze; urgency=low
* New upstream release. This is a rewrite. It is not as functional
diff --git a/setup.py b/setup.py
index b9abf07..004463e 100644
--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@ benchmark backup software than distributing very large test sets.
'Topic :: Software Development :: Testing',
'Topic :: System :: Archiving :: Backup',
],
- license='GNU General Public License, version 2 or later',
- py_modules=['genbackupdata'],
+ license='GNU General Public License, version 3 or later',
+ packages=['genbackupdatalib'],
scripts=['genbackupdata'],
)