diff options
author | Marius Gedminas <marius@gedmin.as> | 2016-10-03 09:38:33 +0300 |
---|---|---|
committer | Marius Gedminas <marius@gedmin.as> | 2016-10-03 09:38:33 +0300 |
commit | b03ec5f18a9caffbcfe98d580e13ba7fa25c6435 (patch) | |
tree | d7bb3757a3d4d141bda936c2cb62c7e0d6774a63 | |
parent | 589d0a876e9baf51376c8a8c51aecde24a1348a3 (diff) |
Preparing release 0.10.20.10.2
-rw-r--r-- | NEWS.rst | 9 | ||||
-rw-r--r-- | setup.cfg | 10 | ||||
-rw-r--r-- | src/gtimelog/__init__.py | 2 |
3 files changed, 16 insertions, 5 deletions
@@ -1,10 +1,11 @@ Changelog --------- -0.10.2 (unreleased) +0.10.2 (2016-10-03) ~~~~~~~~~~~~~~~~~~~ -* No changes yet. +* Fix misleading name produced by ``--sample-config`` (GH: #94) when using + Python 3. 0.10.1 (2016-09-22) @@ -209,12 +210,12 @@ Changelog * New command-line option: --tray. Makes GTimeLog start minimized, or exit without doing anything if it's already running. * Added some documentation for contributors: HACKING.txt. -* Daily reports include totals by category. Contributed by Laurynas Speičys +* Daily reports include totals by category. Contributed by Laurynas SpeiÄys <laurynas@pov.lt>. * The tasks pane can be toggled by pressing F9 and has a close button. * Alternative weekly and monthly report style, can be chosen by adding ``report_style = categorized`` to ~/.gtimelog/gtimelogrc. - Contributed by Laurynas Speičys <laurynas@pov.lt>. + Contributed by Laurynas SpeiÄys <laurynas@pov.lt>. * Bugfix: always preserve the order of entries, even when they have the same timestamp (LP: #708825). @@ -1,3 +1,9 @@ +[bdist_wheel] +universal = 1 + +[metadata] +license_file = COPYING + [flake8] doctests = yes @@ -7,3 +13,7 @@ python_files = tests.py python_functions = !test_suite addopts = --doctest-modules --ignore=setup.py doctest_optionflags = NORMALIZE_WHITESPACE + +[zest.releaser] +history_file = NEWS.rst +python-file-with-version = src/gtimelog/__init__.py diff --git a/src/gtimelog/__init__.py b/src/gtimelog/__init__.py index 23eed38..d852b18 100644 --- a/src/gtimelog/__init__.py +++ b/src/gtimelog/__init__.py @@ -1,3 +1,3 @@ # The gtimelog package. -__version__ = '0.10.2.dev0' +__version__ = '0.10.2' |