summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--README4
-rw-r--r--cliapp/settings.py2
-rw-r--r--cliapp/version.py4
-rw-r--r--debian/changelog10
-rw-r--r--debian/copyright2
6 files changed, 21 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 9d26e3e..e76e659 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,7 @@
NEWS for cliapp
===============
-Version 1.20170823+git, not yet released
+Version 1.20170827+git, not yet released
----------------------------------------
* The `runcmd` timeout behaviour has changed a little. Previously, a
@@ -9,6 +9,12 @@ Version 1.20170823+git, not yet released
optional: if the `timeout_callback` function returns a true value,
termination happens. Otherwise not.
+Version 1.20170827, released 2017-08-27
+----------------------------------------
+
+* Fix settings to not use Unicode strings (drop import of Unicode
+ literals from the future).
+
Version 1.20170823, released 2017-08-23
----------------------------------------
diff --git a/README b/README
index 3e48aa6..cff688f 100644
--- a/README
+++ b/README
@@ -27,12 +27,12 @@ Hacking
To run the test suite:
- make clean check
+ ./check
Legalese
--------
-* Copyright (C) 2011-2014 Lars Wirzenius
+* Copyright (C) 2011-2017 Lars Wirzenius
* Copyright (C) 2012-2015 Codethink Limited
This program is free software; you can redistribute it and/or modify
diff --git a/cliapp/settings.py b/cliapp/settings.py
index 9698791..50cf51e 100644
--- a/cliapp/settings.py
+++ b/cliapp/settings.py
@@ -14,7 +14,7 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-from __future__ import print_function, unicode_literals
+from __future__ import print_function # unicode_literals
try:
from configparser import ConfigParser
diff --git a/cliapp/version.py b/cliapp/version.py
index c308c4d..25493ef 100644
--- a/cliapp/version.py
+++ b/cliapp/version.py
@@ -1,2 +1,2 @@
-__version__ = "1.20170823+git"
-__version_info__ = (1, 20170823, '+git')
+__version__ = "1.20170827+git"
+__version_info__ = (1, 20170827, '+git')
diff --git a/debian/changelog b/debian/changelog
index 5874b62..eb8b158 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-python-cliapp (1.20170823+git-1) UNRELEASED; urgency=medium
+python-cliapp (1.20170827+git-1) UNRELEASED; urgency=medium
* New upstream version.
- -- Lars Wirzenius <liw@liw.fi> Wed, 23 Aug 2017 18:54:04 +0300
+ -- Lars Wirzenius <liw@liw.fi> Sun, 27 Aug 2017 10:22:18 +0100
+
+python-cliapp (1.20170827-1) unstable; urgency=medium
+
+ * New upstream version. (Closes: #873298)
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 27 Aug 2017 10:22:16 +0100
python-cliapp (1.20170823-1) unstable; urgency=medium
diff --git a/debian/copyright b/debian/copyright
index e6b9676..4aea05c 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Lars Wirzenius <liw@liw.fi>
Source: http://code.liw.fi/cliapp/bzr/trunk/
Files: *
-Copyright: 2011, Lars Wirzenius, Codethink Ltd
+Copyright: 2011-, Lars Wirzenius, Codethink Ltd
License: GPL-2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by