summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2012-07-28 19:58:21 +0100
committerThomas Kluyver <takowl@gmail.com>2012-07-28 19:58:21 +0100
commit61ea767ff9c717dd842f6f08d1efb027f3ee73c5 (patch)
treeeb9451f6f2550b35a507ff7c685999c77dc14f9d
parent2780bc434aac3817097a5a09b0efd93d2c373a02 (diff)
Release 0.22rel-0.22
-rw-r--r--ChangeLog5
-rw-r--r--setup.py2
-rw-r--r--xdg/__init__.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b03282..8356bc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Version 0.22 (July 2012)
+ * Better unicode handling in several modules.
+ * Fix for sorting non-ASCII menu entries, freedesktop bug #52492.
+ * More tests.
+
Version 0.21 (July 2012)
* Tests can now be run conveniently using nosetests, and cover more of the
code.
diff --git a/setup.py b/setup.py
index 489df09..1d43789 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup( name = "pyxdg",
- version = "0.21",
+ version = "0.22",
description = "PyXDG contains implementations of freedesktop.org standards in python.",
maintainer = "Freedesktop.org",
maintainer_email = "xdg@lists.freedesktop.org",
diff --git a/xdg/__init__.py b/xdg/__init__.py
index b12f36e..5a4f803 100644
--- a/xdg/__init__.py
+++ b/xdg/__init__.py
@@ -1,3 +1,3 @@
__all__ = [ "BaseDirectory", "DesktopEntry", "Menu", "Exceptions", "IniFile", "IconTheme", "Locale", "Config", "Mime", "RecentFiles", "MenuEditor" ]
-__version__ = "0.21"
+__version__ = "0.22"