summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomaz Solc <tomaz.solc@tablix.org>2013-01-17 09:40:05 +0100
committerTomaz Solc <tomaz.solc@tablix.org>2013-01-17 09:40:05 +0100
commite167158b5ce008fa6c537640a1b82c188a4825b2 (patch)
tree30c91fbb2fa015d9788317f5e330a51950b8c5ce
parent733cf9a9fcb15fc27f83b2735737ff3951565024 (diff)
downloadunidecode-e167158b5ce008fa6c537640a1b82c188a4825b2.tar.gz
Increased version to 0.04.11release-0.04.11
-rw-r--r--ChangeLog6
-rw-r--r--README2
-rw-r--r--setup.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fbb917e..3820130 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-01-17 unidecode 0.04.11
+
+ * Issue a warning on Python 2.x if an object that is not an instance of
+ unicode class is passed to unidecode().
+ * Fixed unit tests for Python 2.5.
+
2012-12-01 unidecode 0.04.10
* Added trove classifiers.
diff --git a/README b/README
index 6bc3f96..1dbe84c 100644
--- a/README
+++ b/README
@@ -99,7 +99,7 @@ Copyright 2001, Sean M. Burke <sburke@cpan.org>, all rights reserved.
Python code and later additions:
-Copyright 2011, Tomaz Solc <tomaz.solc@tablix.org>
+Copyright 2013, Tomaz Solc <tomaz.solc@tablix.org>
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
diff --git a/setup.py b/setup.py
index 5310e63..1b22593 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ class TestCommand(Command):
result = unittest.TextTestRunner(verbosity=2).run(suite)
setup(name='Unidecode',
- version='0.04.10',
+ version='0.04.11',
description='ASCII transliterations of Unicode text',
license='GPL',
long_description=open("README").read(),