Skip to content

Commit c8feaa7

Browse files
committed
chg: dev: release patch
1 parent 9553cd3 commit c8feaa7

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

HISTORY.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
625
v0.8.5 (2019-08-14)
726
--------------------
827

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

234232
dist: 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 \

nicfit/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)