From c20c75e1a5ed17b516a753fce5e84e79b9b6524e Mon Sep 17 00:00:00 2001 From: wiredfool Date: Sat, 11 Oct 2014 09:56:40 -0700 Subject: [PATCH] Version bump, 2.6.1 --- CHANGES.rst | 9 +++++++++ PIL/__init__.py | 2 +- _imaging.c | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 52419088fdf..92b915bf085 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ Changelog (Pillow) ================== +2.6.1 (2014-10-11) +------------------ + +- Fix SciPy regression for in Image.resize #945 + [wiredfool] + +- Fix manifest to include all test files + [aclark] + 2.6.0 (2014-10-01) ------------------ diff --git a/PIL/__init__.py b/PIL/__init__.py index 1bb1250c87e..c7a102d08b8 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '2.6.0' # Pillow +PILLOW_VERSION = '2.6.1' # Pillow _plugins = ['BmpImagePlugin', 'BufrStubImagePlugin', diff --git a/_imaging.c b/_imaging.c index 1759d4c8dc0..a7605b1eeb4 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.6.0" +#define PILLOW_VERSION "2.6.1" #include "Python.h" diff --git a/setup.py b/setup.py index 2d8cafa342b..3b282f1c005 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def _read(file): NAME = 'Pillow' -PILLOW_VERSION = '2.6.0' +PILLOW_VERSION = '2.6.1' TCL_ROOT = None JPEG_ROOT = None JPEG2K_ROOT = None