From 7f76ffc840b9317b0c696cd8699558fb50f5d687 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 10 Sep 2016 20:52:35 +0300 Subject: Prepare source tree for tagging releases using bumper --- NEWS | 12 +++++++++++- debian/changelog | 6 ++++++ debian/control | 2 +- setup.py | 5 ++++- vmdebootstrap/__init__.py | 1 + vmdebootstrap/version.py | 3 +++ 6 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 vmdebootstrap/version.py 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 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 -Uploaders: Neil Williams , +Uploaders: Lars Wirzenius , Iain R. Learmonth , Antonio Terceiro 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') + -- cgit v1.2.1