diff --git a/PIL/__init__.py b/PIL/__init__.py index 143c87e7fb8..a8b1af46372 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '3.2.0.dev0' # Pillow +PILLOW_VERSION = '3.2.0' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index e75d98688d5..83e9e5f9cbf 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.2.0.dev0" +#define PILLOW_VERSION "3.2.0" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index 6d858c61591..f60dabe1f81 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.2.pre.{build} +version: 3.2.0.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index b252bc62053..0f74a401444 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ def _read(file): _tkinter = None NAME = 'Pillow' -PILLOW_VERSION = '3.2.0.dev0' +PILLOW_VERSION = '3.2.0' TCL_ROOT = None JPEG_ROOT = None JPEG2K_ROOT = None