diff --git a/CHANGES.rst b/CHANGES.rst index 520b5109ba7..2f51c36304a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog (Pillow) ================== -4.1.0 (unreleased) +4.1.0 (2017-04-03) ------------------ - Close files after loading if possible #2330 diff --git a/PIL/__init__.py b/PIL/__init__.py index 7a32533d917..ce19b0ea6c0 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '4.1.0.dev0' # Pillow +PILLOW_VERSION = '4.1.0' # Pillow __version__ = PILLOW_VERSION diff --git a/_imaging.c b/_imaging.c index ddb56c7abac..326444a5305 100644 --- a/_imaging.c +++ b/_imaging.c @@ -71,7 +71,7 @@ * See the README file for information on usage and redistribution. */ -#define PILLOW_VERSION "4.1.0.dev0" +#define PILLOW_VERSION "4.1.0" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index deb6d3b1aff..fbf5dd38346 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 4.1.pre.{build} +version: 4.1.0.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index 4c20810efe6..ff3c19f4599 100755 --- a/setup.py +++ b/setup.py @@ -102,7 +102,7 @@ def _read(file): _tkinter = None NAME = 'Pillow' -PILLOW_VERSION = '4.1.0.dev0' +PILLOW_VERSION = '4.1.0' JPEG_ROOT = None JPEG2K_ROOT = None ZLIB_ROOT = None