From bd7e6b868f813b6fe2dcff02b41543b986e0a679 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Fri, 14 Mar 2014 16:40:13 -0700 Subject: [PATCH] Version Bump --- CHANGES.rst | 5 +++++ PIL/__init__.py | 2 +- _imaging.c | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 344dc7668..6ba32ec9f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changelog (Pillow) ================== +2.3.1 (2014-03-14) +------------------ +- Fix insecure use of tempfile.mktemp (CVE-2014-1932 CVE-2014-1933) + [wiredfool] + 2.3.0 (2014-01-01) ------------------ diff --git a/PIL/__init__.py b/PIL/__init__.py index 18bd42a5f..74e1aecb3 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '2.3.0' # Pillow +PILLOW_VERSION = '2.3.1' # Pillow _plugins = ['ArgImagePlugin', 'BmpImagePlugin', diff --git a/_imaging.c b/_imaging.c index c62f0257d..aca67d71e 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.3.0" +#define PILLOW_VERSION "2.3.1" #include "Python.h" diff --git a/setup.py b/setup.py index f4b8532de..558467923 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ except ImportError: NAME = 'Pillow' -VERSION = '2.3.0' +VERSION = '2.3.1' TCL_ROOT = None JPEG_ROOT = None ZLIB_ROOT = None