summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-11-02 19:38:09 +0200
committerLars Wirzenius <liw@liw.fi>2015-11-02 19:38:09 +0200
commitff70263331de6a1f14b1fa44a4e8f893e2c958a6 (patch)
treeb2119a946f710a0df2fe111c5d9f90ed25a01223
parent2675337affae6ef489fc0e33464370945300e8ca (diff)
downloadick-0.9.tar.gz
Prepare release 0.9ick-0.9
-rw-r--r--NEWS6
-rw-r--r--debian/changelog6
-rw-r--r--icklib/__init__.py2
-rw-r--r--setup.py2
4 files changed, 14 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4f5514d..763b567 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
NEWS for Ick
============
+Version 0.9, released 2015-11-02
+--------------------------------
+
+* Fix `local-shell` so that commands are run in the git directory of
+ the project.
+
Version 0.8, released 2015-11-01
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index b50d61e..a0f6575 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ick (0.9-1) unstable; urgency=medium
+
+ * New release.
+
+ -- Lars Wirzenius <liw@liw.fi> Mon, 02 Nov 2015 19:37:48 +0200
+
ick (0.8-1) unstable; urgency=medium
* New upstream release.
diff --git a/icklib/__init__.py b/icklib/__init__.py
index c0f5984..c772f68 100644
--- a/icklib/__init__.py
+++ b/icklib/__init__.py
@@ -28,4 +28,4 @@ from .projectinfo import ProjectInformation
from .statedir import StateDirectory, create_statedir_from_ick
-__version__ = '0.8'
+__version__ = '0.9'
diff --git a/setup.py b/setup.py
index 7fe81ec..d0c4c95 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ from distutils.core import setup
setup(
name='ick',
- version='0.8',
+ version='0.9',
description='continuous integration system',
classifiers=[
'Development Status :: 3 - Alpha',