summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2012-07-25 00:23:16 +0100
committerThomas Kluyver <takowl@gmail.com>2012-07-25 00:23:16 +0100
commit00d0d94829001cda972a1db3d81e6f641f358d5c (patch)
tree7b6ebf5d1f228a983648b4e6736b00c8f536a672
parentca4a9203571ca03bc2ce197e656b0c78c454623b (diff)
Release 0.21rel-0.21
-rw-r--r--ChangeLog14
-rw-r--r--setup.py2
-rw-r--r--xdg/__init__.py2
3 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 37f34c5..9b03282 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Version 0.21 (July 2012)
+ * Tests can now be run conveniently using nosetests, and cover more of the
+ code.
+ * BaseDirectory: New save_cache_path() function, freedesktop bug #26458.
+ * Config: Default icon theme is 'hicolor', not 'highcolor'.
+ * Menu: Obsolete Rule.compile() method removed.
+ * DesktopEntry: Corrected spelling of checkCategories() method, freedesktop
+ bug #24974.
+ * DesktopEntry: Consider Actions and Keywords keys standard.
+ * DesktopEntry: Accept non-ASCII Keywords.
+ * DesktopEntry: Update list of environments valid for OnlyShowIn.
+ * Mime: Fix get_type_by_contents() in Python 3.
+ * RecentFiles: Minor bug fixes.
+
Version 0.20 (June 2012)
* Compatible with Python 3; requires Python 2.6 or later
* Clean up accidental GPL license notice in Menu.py
diff --git a/setup.py b/setup.py
index 5a4060d..489df09 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup( name = "pyxdg",
- version = "0.20",
+ version = "0.21",
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 b3315b9..b12f36e 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.20"
+__version__ = "0.21"