diff options
author | Marius Gedminas <marius@gedmin.as> | 2016-09-22 19:18:36 +0300 |
---|---|---|
committer | Marius Gedminas <marius@gedmin.as> | 2016-09-22 19:20:02 +0300 |
commit | 1d97eb99bb7430ce1fa95fb5063c2cb15247eb6d (patch) | |
tree | a0cd65715f539931360f857bfb185263db04134c | |
parent | 6681c29482715ed62dcfab9feb2fecced724d6d3 (diff) |
Release 0.10.10.10.1
-rw-r--r-- | MANIFEST.in | 3 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS.rst | 6 | ||||
-rw-r--r-- | src/gtimelog/__init__.py | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 7741643..b58d072 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -13,3 +13,6 @@ include .gitignore recursive-include src *.png *.ui recursive-include docs *.png *.rst recursive-include scripts *.py *.rst + +# added by check_manifest.py +include *.yml @@ -85,7 +85,7 @@ release: releasechecklist # I'm chicken so I won't actually do these things yet @echo "Please run" @echo - @echo " rm -rf dist && $(PYTHON) setup.py sdist && twine upload dist/* && git tag `$(PYTHON) setup.py --version`" + @echo " rm -rf dist && $(PYTHON) setup.py sdist bdist_wheel && twine upload dist/* && git tag `$(PYTHON) setup.py --version`" @echo @echo "Please increment the version number in $(FILE_WITH_VERSION)" @echo "and add a new empty entry at the top of $(FILE_WITH_CHANGELOG), then" @@ -1,9 +1,13 @@ Changelog --------- -0.10.1 (unreleased) +0.10.1 (2016-09-22) ~~~~~~~~~~~~~~~~~~~ +* Fix error on Python 3 when using ``task_list_url`` (GH: #92). + +* Fix some PyGIWarnings about unspecified versions on startup. + 0.10.0 (2015-09-29) ~~~~~~~~~~~~~~~~~~~ diff --git a/src/gtimelog/__init__.py b/src/gtimelog/__init__.py index 45b749b..f664fbd 100644 --- a/src/gtimelog/__init__.py +++ b/src/gtimelog/__init__.py @@ -1,3 +1,3 @@ # The gtimelog package. -__version__ = '0.10.1.dev0' +__version__ = '0.10.1' |