File tree Expand file tree Collapse file tree 3 files changed +25
-6
lines changed
Expand file tree Collapse file tree 3 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,25 @@ Release History
33
44.. :changelog:
55
6+ v0.8.6 (2020-04-04)
7+ --------------------
8+
9+ New
10+ ~~~
11+ - `addCommandLineArgs ` hide_args=bool argument to only show --help-logging.
12+ - _HelpCommanMixin accepts COMMAND_INSTANCES map.
13+
14+ Changes
15+ ~~~~~~~
16+ - Removed curio support.
17+ - Register will only warn, rather than ValueError, for dup command names.
18+
19+ Fix
20+ ~~~
21+ - Create lists from command aliases for concatenation.
22+ - Test for dup commands no longer raises.
23+
24+
625v0.8.5 (2019-08-14)
726--------------------
827
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ clean-docs:
125125 $(MAKE ) -C docs clean
126126 -rm README.html
127127
128- pre-release : lint test changelog requirements
128+ pre-release : clean lint test changelog requirements
129129 @# Keep docs off pre-release target list, else it is pruned during 'release' but
130130 @# after a clean.
131131 @$(MAKE ) docs
@@ -226,12 +226,12 @@ pypi-release:
226226 fi \
227227 done
228228
229- sdist : build
229+ sdist : clean build
230230 python setup.py sdist --formats=gztar,zip
231- python setup.py bdist_egg
232- python setup.py bdist_wheel
233231
234232dist : clean gettext sdist docs-dist
233+ python setup.py bdist_egg
234+ python setup.py bdist_wheel
235235 @# The cd dist keeps the dist/ prefix out of the md5sum files
236236 cd dist && \
237237 for f in $$ (ls); do \
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ def __parse_version(v): # pragma: nocover
1414 return ver , rel , ver_info
1515
1616
17- __version__ = "0.8.5 "
17+ __version__ = "0.8.6 "
1818__release_name__ = ""
19- __years__ = "2016-2019 "
19+ __years__ = "2016-2020 "
2020
2121_ , __release__ , __version_info__ = __parse_version (__version__ )
2222__project_name__ = "nicfit.py"
You can’t perform that action at this time.
0 commit comments