Skip to content

Commit 05d02d4

Browse files
committed
Release 8.2: Simple case insensitive dictionaries
1 parent 8616395 commit 05d02d4

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ Changelog`_. This project adheres to `semantic versioning`_.
1111
.. _Keep a Changelog: http://keepachangelog.com/
1212
.. _semantic versioning: http://semver.org/
1313

14+
`Release 8.2`_ (2020-04-19)
15+
---------------------------
16+
17+
Added a simple case insensitive dictionary implementation, for details refer to
18+
the new :mod:`humanfriendly.case` module.
19+
20+
.. _Release 8.2: https://github.com/xolox/python-humanfriendly/compare/8.1...8.2
21+
1422
`Release 8.1`_ (2020-03-06)
1523
---------------------------
1624

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 <peter@peterodding.com>
4-
# Last Change: March 6, 2020
4+
# Last Change: April 19, 2020
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__ = '8.1'
54+
__version__ = '8.2'
5555

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

0 commit comments

Comments
 (0)