From 07e5557e9ebbe0e89494a708dc1bd0db85d73ca2 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 9 Oct 2016 16:30:13 +0300 Subject: Prepare for using bumper for releases --- NEWS | 2 +- debian/changelog | 2 +- ttystatus/__init__.py | 3 +-- ttystatus/version.py | 2 ++ 4 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 ttystatus/version.py diff --git a/NEWS b/NEWS index 61139ac..bbeca60 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ NEWS file for ttystatus ======================= -Version 0.32+git, not yet released +Version 0.33+git, not yet released --------------------------------- * Require Python 2.7. diff --git a/debian/changelog b/debian/changelog index f57f085..a5e760e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -python-ttystatus (0.32+git-1) UNRELEASED; urgency=medium +python-ttystatus (0.33+git-1) UNRELEASED; urgency=medium * New upstream version. * debian/control: Require Python 2.7. diff --git a/ttystatus/__init__.py b/ttystatus/__init__.py index ade38c9..4c5317e 100644 --- a/ttystatus/__init__.py +++ b/ttystatus/__init__.py @@ -34,8 +34,7 @@ from .bytespeed import ByteSpeed from .fmt import parse - -__version__ = '0.32' +from .version import __version__, __version_info__ __all__ = locals() diff --git a/ttystatus/version.py b/ttystatus/version.py new file mode 100644 index 0000000..d5bbe3d --- /dev/null +++ b/ttystatus/version.py @@ -0,0 +1,2 @@ +__version__ = '0.33+git' +__version_info__ = (0, 33, '+git') -- cgit v1.2.1