diff --git a/CHANGES.rst b/CHANGES.rst index ab7fba7e8..1636a119d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog (Pillow) ================== +3.3.3 (2016-10-04) +------------------ + +- Fix fix for map.c overflow #2151 + [wiredfool] + 3.3.2 (2016-10-03) ------------------ diff --git a/PIL/__init__.py b/PIL/__init__.py index 623c6cec5..80a7343b4 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '3.3.2' # Pillow +PILLOW_VERSION = '3.3.3' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index fb434d2a3..53a866f16 100644 --- a/_imaging.c +++ b/_imaging.c @@ -71,7 +71,7 @@ * See the README file for information on usage and redistribution. */ -#define PILLOW_VERSION "3.3.2" +#define PILLOW_VERSION "3.3.3" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index 64864e2f7..68705c62e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.3.2.{build} +version: 3.3.3.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index 4b425d60d..90737ea21 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ except (ImportError, OSError): _tkinter = None NAME = 'Pillow' -PILLOW_VERSION = '3.3.2' +PILLOW_VERSION = '3.3.3' JPEG_ROOT = None JPEG2K_ROOT = None ZLIB_ROOT = None