diff options
author | Thomas Kluyver <thomas@kluyver.me.uk> | 2022-06-05 12:34:18 +0100 |
---|---|---|
committer | Thomas Kluyver <thomas@kluyver.me.uk> | 2022-06-05 12:34:18 +0100 |
commit | 1d23e483ae869ee9532aca43b133cc43f63626a3 (patch) | |
tree | 711c4486bf0f82e7421f900491f1717c318209c7 | |
parent | cb12236a563afffad7e0dae1100d786ff5a4bcc9 (diff) |
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | xdg/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ from setuptools import setup setup( name = "pyxdg", - version = "0.27", + version = "0.28", 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 725eb50..a417f61 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.27" +__version__ = "0.28" |