diff --git a/ChangeLog.rst b/ChangeLog.rst index 7e8cddd..dfdc0a9 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -2,11 +2,16 @@ Change Log ********** +2.2.1 — 2020-07-31 + * Very minor corrections. + 2.2.0 — 2019-07-24 * Add support for Python 3.5, 3.6, 3.7 * Drop official support for Python 2.6, 3.2, 3.3 * Fix for string count equals 0 (issue #67) * Rebasing of struct pull requests: closes #54, closes #60 (Christopher Chavez) + * Refactor to use Python's struct module for packing/unpacking credited to Dave Jones (waveform80) + * Support floating point fields" credited to Reed Nightingale (reedbn) * Raw images support by changing Tiff detection (xaumex) * Fix GPS information erroneously None #96 (Christopher Chavez) * Initial HEIC support (Sam Rushing) diff --git a/exifread/__init__.py b/exifread/__init__.py index 343cfe2..83719cf 100644 --- a/exifread/__init__.py +++ b/exifread/__init__.py @@ -8,7 +8,7 @@ from .utils import ord_ from .heic import HEICExifFinder -__version__ = '2.2.0' +__version__ = '2.2.1' logger = get_logger()