# HG changeset patch
# User wiredfool <eric-github@soroos.net>
# Date 1407872415 25200
#      Tue Aug 12 12:40:15 2014 -0700
# Node ID 4cdb6a13a99fb7bcd8fda02ad491b2bbecccbcfa
# Parent  f4d2fe9abc1a4f4204af64eb2128d9559f55a754
Bump Version/Changelog

diff --git a/CHANGES.rst b/CHANGES.rst
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,13 @@
 Changelog (Pillow)
 ==================
 
+2.5.3 (2014-08-18)
+------------------
+
+- Fixed CVE-2014-3598, a DOS in the Jpeg2KImagePlugin
+  [Andrew Drake]
+
+
 2.5.2 (2014-08-13)
 ------------------
 
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.5.2' # Pillow
+PILLOW_VERSION = '2.5.3' # Pillow
 
 _plugins = ['BmpImagePlugin',
             'BufrStubImagePlugin',
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.5.2"
+#define PILLOW_VERSION "2.5.3"
 
 #include "Python.h"
 
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -90,7 +90,7 @@
 
 
 NAME = 'Pillow'
-PILLOW_VERSION = '2.5.2'
+PILLOW_VERSION = '2.5.3'
 TCL_ROOT = None
 JPEG_ROOT = None
 JPEG2K_ROOT = None