summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-03-30 17:43:12 +0300
committerLars Wirzenius <liw@liw.fi>2018-03-30 17:43:12 +0300
commit5f7ea21acc0a325d732efb24e8337dd2e208d98f (patch)
tree4a9dc6a9ef1f93a927e39dcd231ed63079730bde
parent9184c4cbae2a1a6502a36142953accf1fc164739 (diff)
downloadick2-0.32.tar.gz
Prepare to release version 0.32ick2-0.32
-rw-r--r--NEWS3
-rw-r--r--debian/changelog4
-rw-r--r--ick2/actions.py5
-rw-r--r--ick2/version.py4
4 files changed, 7 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index dc0ce84..8144978 100644
--- a/NEWS
+++ b/NEWS
@@ -17,9 +17,10 @@ You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-Version 0.31+git, not yet released
+Version 0.32, released 2018-03-30
----------------------------------
+* Fix: empty workspace when build starts. Again.
Version 0.31, released 2018-03-30
----------------------------------
diff --git a/debian/changelog b/debian/changelog
index 20d9dd8..0f36e3e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-ick2 (0.31+git-1) UNRELEASED; urgency=medium
+ick2 (0.32-1) unstable; urgency=medium
* New upstream version.
- -- Lars Wirzenius <liw@liw.fi> Fri, 30 Mar 2018 17:20:26 +0300
+ -- Lars Wirzenius <liw@liw.fi> Fri, 30 Mar 2018 17:43:12 +0300
ick2 (0.31-1) unstable; urgency=medium
diff --git a/ick2/actions.py b/ick2/actions.py
index 9c9b9d6..ab23edc 100644
--- a/ick2/actions.py
+++ b/ick2/actions.py
@@ -19,9 +19,6 @@ import os
import tempfile
-import cliapp
-
-
import ick2
@@ -215,7 +212,7 @@ class CreateWorkspaceAction(Action):
env = self.get_env()
dirname = env.get_workspace_directory()
make_directory_empty(env, dirname)
- self._env.report(0, 'Created or emptied workspace %s\n' % workspace)
+ self._env.report(0, 'Created or emptied workspace %s\n' % dirname)
return 0
diff --git a/ick2/version.py b/ick2/version.py
index 3c26ed3..aeecda6 100644
--- a/ick2/version.py
+++ b/ick2/version.py
@@ -1,2 +1,2 @@
-__version__ = "0.31+git"
-__version_info__ = (0, 31, '+git')
+__version__ = "0.32"
+__version_info__ = (0, 32)