summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG9
-rwxr-xr-xsetup.py5
2 files changed, 12 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6c00727..89f11a6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,12 @@
+version 1.4 (2014-04-16)
+* new ordering mechanism with verbose logging. fixes rare cases where the modules methods were not always loaded in the same order and caused inconsistent ordering between reloads. thx to @guiniol for reporting/debugging and @IotaSpencer and @tasse for testing.
+* debug: dont catch print() on debug mode
+* debug: add position requested by modules
+* Merge pull request #25 from nawadanp/master
+* Add new module ns_checker.py, by @nawadanp
+* move README to markdown, change ordering
+* update the README with the new options from --help
+
version 1.3 (2014-02-23)
* new standalone mode allowing to bypass i3status when you need a py3status-modules-only i3bar
* debug mode add log info about py3status invocation config
diff --git a/setup.py b/setup.py
index 73ed0ab..9a51c1b 100755
--- a/setup.py
+++ b/setup.py
@@ -15,11 +15,11 @@ def read(fname):
setup(
name='py3status',
- version='1.3',
+ version='1.4',
author='Ultrabug',
author_email='ultrabug@ultrabug.net',
description='py3status is an extensible i3status wrapper written in python',
- long_description=read('README.rst'),
+ long_description=read('README.md'),
url='https://github.com/ultrabug/py3status',
download_url='https://github.com/ultrabug/py3status/tags',
license='BSD',
@@ -42,6 +42,7 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)