diff --git a/ChangeLog.rst b/ChangeLog.rst index ddc9851..203b013 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -2,6 +2,9 @@ Change Log ********** +2.3.2 — 2020-10-29 + * Fixes for HEIC files from Note10+ (#127) by Drew Perttula + 2.3.1 — 2020-08-07 * Fix bug introduced with v2.3.0 in HEIC processing. diff --git a/README.rst b/README.rst index 8602d12..0a79d53 100644 --- a/README.rst +++ b/README.rst @@ -160,12 +160,13 @@ Pass the ``-s`` or ``--strict`` argument, or as: Usage Example ============= -This example shows how to use the library to correct the orientation of an image (using PIL for the transformation) before e.g. displaying it. +This example shows how to use the library to correct the orientation of an image +(using Pillow for the transformation) before e.g. displaying it. .. code-block:: python import exifread - from PIL import Image + from Pillow import Image def _read_img_and_correct_exif_orientation(path): im = Image.open(path) @@ -192,10 +193,8 @@ This example shows how to use the library to correct the orientation of an image if 8 in val: logging.debug("Rotating by 90 degrees.") im = im.transpose(Image.ROTATE_90) - return im - Credit ****** diff --git a/exifread/__init__.py b/exifread/__init__.py index d34f9c0..9bc1fab 100644 --- a/exifread/__init__.py +++ b/exifread/__init__.py @@ -10,7 +10,7 @@ from .utils import ord_, make_string from .heic import HEICExifFinder -__version__ = '2.3.1' +__version__ = '2.3.2' logger = get_logger()