From ac5a212cee478f7f1448080d47c2c9daa29e297f Mon Sep 17 00:00:00 2001 From: wiredfool Date: Mon, 3 Oct 2016 07:57:25 -0700 Subject: [PATCH] 3.4.0 Release Version bump --- CHANGES.rst | 2 +- PIL/__init__.py | 2 +- _imaging.c | 2 +- appveyor.yml | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e6952224452..b76e82bf460 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog (Pillow) ================== -3.4.0 (unreleased) +3.4.0 (2016-10-03) ------------------ - Removed Image.core.open_ppm, added negative image size checks in Image.py. #2146 diff --git a/PIL/__init__.py b/PIL/__init__.py index 561a13a67f7..f1f413d4dc5 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '3.4.0.dev0' # Pillow +PILLOW_VERSION = '3.4.0' # Pillow __version__ = PILLOW_VERSION diff --git a/_imaging.c b/_imaging.c index 47334f184f8..8a69aafd622 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.4.0.dev0" +#define PILLOW_VERSION "3.4.0" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index 826c4c1a546..7e0674d8063 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.4.pre.{build} +version: 3.4.0.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index 024780d3bd4..685097f9e63 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ def _read(file): _tkinter = None NAME = 'Pillow' -PILLOW_VERSION = '3.4.0.dev0' +PILLOW_VERSION = '3.4.0' JPEG_ROOT = None JPEG2K_ROOT = None ZLIB_ROOT = None