summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-03-25 21:22:22 +0200
committerLars Wirzenius <liw@liw.fi>2016-03-25 21:22:22 +0200
commit5b40be146fdfad6774a7476ecb118abaea548657 (patch)
tree835e962a2e0fc0df5a1601b20a9f5b09a3dd9c15
parent2c82f685dfd06ddea41718fba266224ca2c2ce6c (diff)
downloaddistix-5b40be146fdfad6774a7476ecb118abaea548657.tar.gz
Prepare to release version 0.6.1distix-0.6.1
-rw-r--r--NEWS2
-rw-r--r--debian/changelog7
-rw-r--r--distixlib/version.py4
-rw-r--r--setup.py2
4 files changed, 8 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 68cd252..7fe8de2 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ NEWS for distix, a distributed ticketing system
This file contains release notes and other newsworthy bits about
distix, a distributed ticketing system.
-Version 0.6+git, not yet released
+Version 0.6.1, released 2016-03-25
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index bd2beea..577e5e0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-distix (0.6+git-1) UNRELEASED; urgency=medium
+distix (0.6.1-1) unstable; urgency=medium
- *
+ * Include distix.css in package.
+ * New upstream version.
- -- Lars Wirzenius <liw@liw.fi> Fri, 25 Mar 2016 20:37:02 +0200
+ -- Lars Wirzenius <liw@liw.fi> Fri, 25 Mar 2016 21:22:22 +0200
distix (0.6-1) unstable; urgency=medium
diff --git a/distixlib/version.py b/distixlib/version.py
index ed54455..1f86fc0 100644
--- a/distixlib/version.py
+++ b/distixlib/version.py
@@ -1,2 +1,2 @@
-__version__ = "0.6+git"
-__version_info__ = (0, 6, '+git')
+__version__ = "0.6.1"
+__version_info__ = (0, 6, 1)
diff --git a/setup.py b/setup.py
index a186fb6..37ca56d 100644
--- a/setup.py
+++ b/setup.py
@@ -105,7 +105,7 @@ setup(name='distix',
scripts=['distix'],
packages=['distixlib', 'distixlib.plugins'],
package_data={
- 'distixlib': ['templates/*'],
+ 'distixlib': ['templates/*', 'distix.css'],
},
cmdclass={
'check': Check,