diff --git a/CHANGES.rst b/CHANGES.rst index 0d43ab1aee0..ca852f1de90 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,16 @@ Changelog (Pillow) ================== +3.3.1 (2016-08-18) +------------------ + +- Fix C90 compilation error for Tcl / Tk rewrite #2033 + [matthew-brett] + +- Fix image loading when rotating by 0 deg #2052 + [homm] + + 3.3.0 (2016-07-01) ------------------ diff --git a/PIL/__init__.py b/PIL/__init__.py index e5dcf436993..6b87744ed20 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '3.3.0' # Pillow +PILLOW_VERSION = '3.3.1' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index 52dc3b3fae4..7dd8f699349 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.0" +#define PILLOW_VERSION "3.3.1" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index 8adb9ba6d45..4b434377f6d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.3.0.{build} +version: 3.3.1.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index 53c7227b8e7..6f150382fee 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ def _read(file): _tkinter = None NAME = 'Pillow' -PILLOW_VERSION = '3.3.0' +PILLOW_VERSION = '3.3.1' JPEG_ROOT = None JPEG2K_ROOT = None ZLIB_ROOT = None