Skip to content

Commit 6758ac6

Browse files
committed
Release 10.0: Improve Windows compatibility (pyreadline[3])
This fixes #44 by merging #45.
1 parent 9f9f271 commit 6758ac6

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG.rst

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

humanfriendly/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Human friendly input/output in Python.
22
#
33
# Author: Peter Odding <[email protected]>
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."""
@@ -51,7 +51,7 @@
5151
)
5252

5353
# Semi-standard module versioning.
54-
__version__ = '9.2'
54+
__version__ = '10.0'
5555

5656
# Named tuples to define units of size.
5757
SizeUnit = collections.namedtuple('SizeUnit', 'divider, symbol, name')

0 commit comments

Comments
 (0)