From 0177cceac4adfd0020ecbf49fb44ad275dcc1f51 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Thu, 1 Oct 2015 16:23:49 +0100 Subject: [PATCH] 3.0 Release versioning --- 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 a0951797030..fdbe4e0ae3d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog (Pillow) ================== -3.0.0 (Unreleased) +3.0.0 (2015-10-01) ------------------ - Check flush method existence for file-like object #1398 diff --git a/PIL/__init__.py b/PIL/__init__.py index 665474f9b47..6756d7a9a12 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '3.0.0.dev0' # Pillow +PILLOW_VERSION = '3.0.0' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index 92dfc005ef2..7441f8b9d02 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.0.0.dev0" +#define PILLOW_VERSION "3.0.0" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index 0e3224540de..4c89abf02f2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.0.pre.{build} +version: 3.0.0.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index 0d4bf73fdec..4cb7257af3e 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def _read(file): NAME = 'Pillow' -PILLOW_VERSION = '3.0.0.dev0' +PILLOW_VERSION = '3.0.0' TCL_ROOT = None JPEG_ROOT = None JPEG2K_ROOT = None