summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"