diff --git a/CHANGELOG.rst b/CHANGELOG.rst index abfe783..d63c173 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,6 +11,14 @@ Changelog`_. This project adheres to `semantic versioning`_. .. _Keep a Changelog: http://keepachangelog.com/ .. _semantic versioning: http://semver.org/ +`Release 8.2`_ (2020-04-19) +--------------------------- + +Added a simple case insensitive dictionary implementation, for details refer to +the new :mod:`humanfriendly.case` module. + +.. _Release 8.2: https://github.com/xolox/python-humanfriendly/compare/8.1...8.2 + `Release 8.1`_ (2020-03-06) --------------------------- diff --git a/humanfriendly/__init__.py b/humanfriendly/__init__.py index 4641b17..3982aad 100644 --- a/humanfriendly/__init__.py +++ b/humanfriendly/__init__.py @@ -1,7 +1,7 @@ # Human friendly input/output in Python. # # Author: Peter Odding -# Last Change: March 6, 2020 +# Last Change: April 19, 2020 # URL: https://humanfriendly.readthedocs.io """The main module of the `humanfriendly` package.""" @@ -51,7 +51,7 @@ ) # Semi-standard module versioning. -__version__ = '8.1' +__version__ = '8.2' # Named tuples to define units of size. SizeUnit = collections.namedtuple('SizeUnit', 'divider, symbol, name')