summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--debian/changelog7
-rw-r--r--genbackupdatalib/__init__.py3
-rw-r--r--genbackupdatalib/version.py2
4 files changed, 14 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index dc75dea..238099a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
NEWS for genbackupdata
======================
+Version 1.9+gt, not yet released
+--------------------------------
+
+
Version 1.9, released 2015-17-18
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index 1a8d676..01b47f6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+genbackupdata (1.9+git-1) UNRELEASED; urgency=medium
+
+ * New upstream release.
+ * Change build-dep on texlive-full to just texlive.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 18 Oct 2015 10:29:58 +0300
+
genbackupdata (1.9-1) unstable; urgency=medium
* New upstream release.
diff --git a/genbackupdatalib/__init__.py b/genbackupdatalib/__init__.py
index 40b8c3a..83edb0c 100644
--- a/genbackupdatalib/__init__.py
+++ b/genbackupdatalib/__init__.py
@@ -14,8 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-__version__ = '1.9'
-
+from .version import __version__, __version_info__
from .generator import DataGenerator
from .names import NameGenerator
diff --git a/genbackupdatalib/version.py b/genbackupdatalib/version.py
new file mode 100644
index 0000000..0cc4d9d
--- /dev/null
+++ b/genbackupdatalib/version.py
@@ -0,0 +1,2 @@
+__version__ = '1.9'
+__version_info__ = (1, 9)