# HG changeset patch # User wiredfool <eric-github@soroos.net> # Date 1407869294 25200 # Tue Aug 12 11:48:14 2014 -0700 # Node ID 757547ea5cbfc070ba1fde77b65b57b001889c29 # Parent 0cee2f24c3751ad48606501e0c1d19e9369c7e54 Bump Versions/Changelog diff --git a/CHANGES.rst b/CHANGES.rst --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog (Pillow) ================== +2.3.2 (2014-08-13) +------------------ + +- Fixed CVE-2014-3589, a DOS in the IcnsImagePlugin + [Andrew Drake] + 2.3.1 (2014-03-14) ------------------ - Fix insecure use of tempfile.mktemp (CVE-2014-1932 CVE-2014-1933) diff --git a/PIL/__init__.py b/PIL/__init__.py --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '2.3.1' # Pillow +PILLOW_VERSION = '2.3.2' # Pillow _plugins = ['ArgImagePlugin', 'BmpImagePlugin', diff --git a/_imaging.c b/_imaging.c --- a/_imaging.c +++ b/_imaging.c @@ -71,7 +71,7 @@ * See the README file for information on usage and redistribution. */ -#define PILLOW_VERSION "2.3.1" +#define PILLOW_VERSION "2.3.2" #include "Python.h" diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ NAME = 'Pillow' -VERSION = '2.3.1' +VERSION = '2.3.2' TCL_ROOT = None JPEG_ROOT = None ZLIB_ROOT = None