From 80672b61e8596c7d6dab7b4ef3ef1e4783902f51 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Wed, 1 Jul 2015 14:33:56 -0400 Subject: [PATCH] This is 2.9.0 Fixes #1174 --- PIL/__init__.py | 2 +- _imaging.c | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PIL/__init__.py b/PIL/__init__.py index ee3581d65..179230d7f 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '2.9.0.dev2' # Pillow +PILLOW_VERSION = '2.9.0' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index 932135980..1d0c3b7fb 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.9.0.dev2" +#define PILLOW_VERSION "2.9.0" #include "Python.h" diff --git a/setup.py b/setup.py index 388100d78..9062a21f6 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ except (ImportError, OSError): NAME = 'Pillow' -PILLOW_VERSION = '2.9.0.dev2' +PILLOW_VERSION = '2.9.0' TCL_ROOT = None JPEG_ROOT = None JPEG2K_ROOT = None