summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--debian/changelog12
-rw-r--r--jtlib/version.py21
3 files changed, 23 insertions, 19 deletions
diff --git a/NEWS b/NEWS
index 7f6ecb4..f0e08f5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,15 @@
NEWS for jt
===========
+Version 0.12+git, not yet released
+----------------------------------
+
+
+Version 0.12, released 2016-02-16
+---------------------------------
+
+* Handle non-ASCII Unicode text more consistently (titles, filenames).
+
Version 0.11, released 2016-01-09
---------------------------------
diff --git a/debian/changelog b/debian/changelog
index b6498dc..37ff053 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+jt (0.12+git-1) UNRELEASED; urgency=medium
+
+ *
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 16 Feb 2016 17:15:30 +0200
+
+jt (0.12-1) unstable; urgency=medium
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 16 Feb 2016 17:15:30 +0200
+
jt (0.11-1) unstable; urgency=medium
* New upstream version.
diff --git a/jtlib/version.py b/jtlib/version.py
index b05769b..b107890 100644
--- a/jtlib/version.py
+++ b/jtlib/version.py
@@ -1,19 +1,2 @@
-# Copyright 2015 Lars Wirzenius
-#
-# 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
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-# =*= License: GPL-3+ =*=
-
-
-__version__ = '0.11'
+__version__ = "0.12+git"
+__version_info__ = (0, 12, '+git')