File tree Expand file tree Collapse file tree 2 files changed +31
-2
lines changed
Expand file tree Collapse file tree 2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,35 @@ Changelog`_. This project adheres to `semantic versioning`_.
1111.. _Keep a Changelog : http://keepachangelog.com/
1212.. _semantic versioning : http://semver.org/
1313
14+ `Release 10.0 `_ (2021-09-17)
15+ ----------------------------
16+
17+ **Noteworthy changes: **
18+
19+ - Merged pull request `#45 `_ to resolve the issue caused by the conditional
20+ :pypi: `pyreadline ` requirement on Windows not supporting Python 3.9+.
21+
22+ - Updated the readme to use Python 3 in the example (reported in issue `#56 `_).
23+ Also added a mention of the ``humanfriendly --demo `` command.
24+
25+ - Removed the ``humanfriendly.compat.unittest `` alias that presumably no-one is
26+ using at this point; it had been rendered useless quite a long time ago
27+ (requested in issue `#53 `_).
28+
29+ **Internal changes: **
30+
31+ - Merged pull request `#54 `_ which migrates the :pypi: `humanfriendly ` project
32+ from Travis CI to GitHub Actions and from Coveralls.io to Codecov.
33+
34+ - Fixed a deprecation warning concerning ``setup.cfg `` and some Sphinx
35+ documentation errors.
36+
37+ .. _Release 10.0 : https://github.com/xolox/python-humanfriendly/compare/9.2...10.0
38+ .. _#45 : https://github.com/xolox/python-humanfriendly/pull/45
39+ .. _#53 : https://github.com/xolox/python-humanfriendly/issues/53
40+ .. _#54 : https://github.com/xolox/python-humanfriendly/pull/54
41+ .. _#56 : https://github.com/xolox/python-humanfriendly/issues/56
42+
1443`Release 9.2 `_ (2021-06-11)
1544---------------------------
1645
Original file line number Diff line number Diff line change 11# Human friendly input/output in Python.
22#
33# Author: Peter Odding <peter@peterodding.com>
4- # Last Change: June 11 , 2021
4+ # Last Change: September 17 , 2021
55# URL: https://humanfriendly.readthedocs.io
66
77"""The main module of the `humanfriendly` package."""
5151)
5252
5353# Semi-standard module versioning.
54- __version__ = '9.2 '
54+ __version__ = '10.0 '
5555
5656# Named tuples to define units of size.
5757SizeUnit = collections .namedtuple ('SizeUnit' , 'divider, symbol, name' )
You can’t perform that action at this time.
0 commit comments