summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG4
-rwxr-xr-xsetup.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5938009..bd8b1d9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+version 2.1 (2015-01-09)
+* fix i3status.conf parsing when config parameters contains brackets wrt issue #51 thx to @ZeiP
+* fix NamedTemporaryFile file delete throwing an OSError as we clean it up ourselves to be compatible with all python versions
+
version 2.0 (2015-01-04)
* two main highlights, see the wiki for more details :
* 1- you can now load, run and order ALL (i3status and py3status) modules from your usual i3status.conf
diff --git a/setup.py b/setup.py
index 78c7447..6aadbb1 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def read(fname):
setup(
name='py3status',
- version='2.0',
+ version='2.1',
author='Ultrabug',
author_email='ultrabug@ultrabug.net',
description='py3status is an extensible i3status wrapper written in python',