diff --git a/CHANGES.rst b/CHANGES.rst index 688c6e0af..96fa25a98 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog (Pillow) ================== -3.4.1 (2016-10-0?) +3.4.1 (2016-10-04) ------------------ - Allow lists as arguments for Image.new() #2149 diff --git a/PIL/__init__.py b/PIL/__init__.py index f1f413d4d..ffb82eadc 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '3.4.0' # Pillow +PILLOW_VERSION = '3.4.1' # Pillow __version__ = PILLOW_VERSION diff --git a/_imaging.c b/_imaging.c index 8a69aafd6..ce86c327a 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" +#define PILLOW_VERSION "3.4.1" #include "Python.h" diff --git a/appveyor.yml b/appveyor.yml index 7e0674d80..c9d9da0ad 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.4.0.{build} +version: 3.4.1.{build} clone_folder: c:\pillow init: - ECHO %PYTHON% diff --git a/setup.py b/setup.py index 685097f9e..cfbfa0e8c 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ except (ImportError, OSError): _tkinter = None NAME = 'Pillow' -PILLOW_VERSION = '3.4.0' +PILLOW_VERSION = '3.4.1' JPEG_ROOT = None JPEG2K_ROOT = None ZLIB_ROOT = None