diff --git a/README.md b/README.md index 366799d..dbf1535 100644 --- a/README.md +++ b/README.md @@ -275,6 +275,10 @@ When a package is built, a new virtualenv is created and populated using the con Package building setup: apt-get install build-essential devscripts dh-virtualenv +Incrementing package version: + 'vim setup.py' and increment version parameter. + 'dch -i' and write release notes, set version. + Build the package: dpkg-buildpackage -us -uc diff --git a/debian/changelog b/debian/changelog index 643a450..9529fe1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-stacktask (0.1.4) unstable; urgency=medium + + * Email templates updated and made configurable in /etc. + + -- Dale Smith Tue, 22 Mar 2016 14:49:09 +0000 + python-stacktask (0.1.3) unstable; urgency=medium * Renaming cmd to stacktask-api diff --git a/setup.py b/setup.py index d07e87e..0eeefc3 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open('package_readme.rst') as file: setup( name='stacktask', - version='0.1.3', + version='0.1.4', description='An admin task workflow service for openstack.', long_description=long_description, url='https://github.com/catalyst/stacktask',