summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-09-10 20:52:35 +0300
committerLars Wirzenius <liw@liw.fi>2016-09-10 20:52:35 +0300
commit7f76ffc840b9317b0c696cd8699558fb50f5d687 (patch)
tree0ab6c0c22f4aad835adde7ee48295db8e32e7935
parent283e2a89bf9e9f993e195f68c566d86a87936880 (diff)
downloadvmdebootstrap-7f76ffc840b9317b0c696cd8699558fb50f5d687.tar.gz
Prepare source tree for tagging releases using bumper
-rw-r--r--NEWS12
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rw-r--r--setup.py5
-rw-r--r--vmdebootstrap/__init__.py1
-rw-r--r--vmdebootstrap/version.py3
6 files changed, 26 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index c1ac34d..1453571 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,17 @@
NEWS for vmdebootstrap
======================
-Version 0.3, unreleased
+Version 1.6+git, not yet released
+---------------------------------
+
+* New maintainer: Lars Wirzenius replaces Neil Williams.
+
+A lot of history missing from NEWS
+----------------------------------
+
+It's in git logs and debian/changelog, but wasn't included here.
+
+Version 0.3
-----------------------
* Add example customisation scripts to complement the support
diff --git a/debian/changelog b/debian/changelog
index 878b24f..b904427 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+vmdebootstrap (1.6+git-1) UNRELEASED; urgency=medium
+
+ * New maintainer: Lars Wirzenius replaces Neil Williams.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 10 Sep 2016 20:48:58 +0300
+
vmdebootstrap (1.6-1) unstable; urgency=medium
* Deprecating extlinux as default - to switch to grub in a
diff --git a/debian/control b/debian/control
index 2649136..21dc3b2 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: vmdebootstrap
Section: admin
Priority: extra
Maintainer: VMDebootstrap List <vmdebootstrap-devel@lists.alioth.debian.org>
-Uploaders: Neil Williams <codehelp@debian.org>,
+Uploaders: Lars Wirzenius <liw@liw.fi>,
Iain R. Learmonth <irl@debian.org>,
Antonio Terceiro <terceiro@debian.org>
Build-Depends: debhelper (>= 8.0.0), dh-python,
diff --git a/setup.py b/setup.py
index eb08b27..76f9f0b 100644
--- a/setup.py
+++ b/setup.py
@@ -22,9 +22,12 @@
from setuptools import setup, find_packages
+import vmdebootstrap
+
+
setup(
name='vmdebootstrap',
- version='1.6',
+ version=vmdebootstrap.__version__,
description='Bootstrap Debian into a (virtual machine) disk image',
author='Neil Williams',
author_email='codehelp@debian.org',
diff --git a/vmdebootstrap/__init__.py b/vmdebootstrap/__init__.py
index e69de29..03a5053 100644
--- a/vmdebootstrap/__init__.py
+++ b/vmdebootstrap/__init__.py
@@ -0,0 +1 @@
+from .version import __version__, __version_info__
diff --git a/vmdebootstrap/version.py b/vmdebootstrap/version.py
new file mode 100644
index 0000000..86deea3
--- /dev/null
+++ b/vmdebootstrap/version.py
@@ -0,0 +1,3 @@
+__version__ = "1.6+git"
+__version_info__ = (1, 6, '+git')
+