summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-10-11 17:07:19 +0300
committerLars Wirzenius <liw@liw.fi>2015-10-11 17:07:19 +0300
commite7b65ffbf057ad41923bb5dbf2bb81d91e147f3a (patch)
treec6acedbb591299c33333d1346be947c3ea22155e
parent98b0553ffb7dc8340ec66a1f64e3aa9ef0680654 (diff)
downloadick-e7b65ffbf057ad41923bb5dbf2bb81d91e147f3a.tar.gz
Prepare release version 0.7ick-0.7
-rw-r--r--NEWS6
-rw-r--r--debian/changelog6
-rw-r--r--icklib/__init__.py3
-rw-r--r--setup.py2
4 files changed, 13 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index d3f7184..a1ae447 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,11 @@
NEWS for Ick
============
-Version 0.7, released UNRELEASED
+Version 0.7, released 2015-10-11
--------------------------------
-* Progress reporting is now via ttystatus to the terminal, rather
- than flooding stdout with build logs.
+* Progress reporting is now via ttystatus to the terminal, rather than
+ flooding stdout with build logs.
Version 0.6.1, released 2015-09-30
----------------------------------
diff --git a/debian/changelog b/debian/changelog
index 935ff87..1e3a971 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ick (0.7-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 11 Oct 2015 17:06:15 +0300
+
ick (0.6.1-1) unstable; urgency=medium
* New upstream release.
diff --git a/icklib/__init__.py b/icklib/__init__.py
index a6ae010..e994a47 100644
--- a/icklib/__init__.py
+++ b/icklib/__init__.py
@@ -26,3 +26,6 @@ from .git import GitClone
from .buildinfo import BuildInformation
from .projectinfo import ProjectInformation
from .statedir import StateDirectory, create_statedir_from_ick
+
+
+__version__ = '0.7'
diff --git a/setup.py b/setup.py
index c3f1af6..082616f 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ from distutils.core import setup
setup(
name='ick',
- version='0.6.1',
+ version='0.7',
description='continuous integration system',
classifiers=[
'Development Status :: 3 - Alpha',