Skip to content

Commit

Permalink
Release 8.2: Simple case insensitive dictionaries
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Apr 19, 2020
1 parent 8616395 commit 05d02d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions humanfriendly/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Human friendly input/output in Python.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: March 6, 2020
# Last Change: April 19, 2020
# URL: https://humanfriendly.readthedocs.io

"""The main module of the `humanfriendly` package."""
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 05d02d4

Please sign in to comment.