From 0222a059d62723fe056daa17f007f87dc46595b4 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Sat, 6 Jun 2015 19:52:13 -0400 Subject: [PATCH] Prep 2.8.2 --- CHANGES.rst | 6 ++++++ PIL/__init__.py | 2 +- _imaging.c | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 88c9a7793..b310fd58f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog (Pillow) ================== +2.8.2 (2015-06-06) +------------------ + +- Bug fix: Fixed Tiff handling of bad EXIF data + [radarhere] + 2.8.1 (2015-04-02) ------------------ diff --git a/PIL/__init__.py b/PIL/__init__.py index 4dce12d33..118bf1bb9 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '2.8.1' # Pillow +PILLOW_VERSION = '2.8.2' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index 08e003c80..b06030412 100644 --- a/_imaging.c +++ b/_imaging.c @@ -71,7 +71,7 @@ * See the README file for information on usage and redistribution. */ -#define PILLOW_VERSION "2.8.1" +#define PILLOW_VERSION "2.8.2" #include "Python.h" diff --git a/setup.py b/setup.py index 3887b421d..dd332014e 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ except (ImportError, OSError): NAME = 'Pillow' -PILLOW_VERSION = '2.8.1' +PILLOW_VERSION = '2.8.2' TCL_ROOT = None JPEG_ROOT = None JPEG2K_ROOT = None