summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2012-06-24 18:46:48 +0100
committerThomas Kluyver <takowl@gmail.com>2012-06-24 18:46:48 +0100
commit6eafadbea2e95e31c1f09bdb7ab72eaa06a72b9d (patch)
tree7cfd658049811a297acd42121850d7c912e71386
parent39fce62a480445f2b974a17064022f688143ba1c (diff)
Release 0.20rel-0.20
-rw-r--r--ChangeLog13
-rw-r--r--setup.py2
-rw-r--r--xdg/__init__.py2
3 files changed, 14 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 65b6e8b..37f34c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,21 @@
+Version 0.20 (June 2012)
+ * Compatible with Python 3; requires Python 2.6 or later
+ * Clean up accidental GPL license notice in Menu.py
+ * Add test scripts for xdg.Mime, xdg.Locale and xdg.RecentFiles
+ * Fixes for icon theme validation
+ * Fix exception in xdg.Mime
+ * Replace invalid string exceptions
+ * Fall back to default base directories if $XDG* environment variables are
+ set but empty.
+ * Remove use of deprecated os.popen3 in Menu.py
+ * Correct URLs in README
+
Version 0.19
* IniFile.py: add support for trusted desktop files (thanks to karl mikaelsson)
* DesktopEntry.py: Support spec version 1.0, Debian bug #563660
* MimeType.py: Fix parsing of in memory data, Debian bug #563718
* DesktopEntry.py: Fix constructor, Debian bug #551297, #562951, #562952
-
Version 0.18
* DesktopEntry.py: Add getMimeTypes() method, correctly returning strings
diff --git a/setup.py b/setup.py
index 421c1dd..5a4060d 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup( name = "pyxdg",
- version = "0.20c1",
+ version = "0.20",
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 9f1292a..b3315b9 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.20c1"
+__version__ = "0.20"