diff --git a/CHANGES.rst b/CHANGES.rst index b0834eb8b..6d3c3f99f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changelog (Pillow) ================== -2.4.0 (unreleased) +2.4.0 (04/01/2014) ------------------ - Indexed Transparency handled for conversions between L, RGB, and P modes. Fixes #510 diff --git a/MANIFEST.in b/MANIFEST.in index 09f265250..d102ed256 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -10,6 +10,7 @@ recursive-include Images *.bdf recursive-include Images *.fli recursive-include Images *.gif recursive-include Images *.ico +recursive-include Images *.icns recursive-include Images *.jpg recursive-include Images *.pbm recursive-include Images *.pil @@ -34,13 +35,16 @@ recursive-include Tests *.gif recursive-include Tests *.gnuplot recursive-include Tests *.html recursive-include Tests *.icm +recursive-include Tests *.icns recursive-include Tests *.ico recursive-include Tests *.jpg +recursive-include Tests *.jp2 recursive-include Tests *.pcf recursive-include Tests *.pcx recursive-include Tests *.png recursive-include Tests *.ppm recursive-include Tests *.py +recursive-include depends *.sh recursive-include Tests *.tif recursive-include Tests *.tiff recursive-include Tests *.ttf diff --git a/PIL/__init__.py b/PIL/__init__.py index b83220097..c35f6207e 100644 --- a/PIL/__init__.py +++ b/PIL/__init__.py @@ -12,7 +12,7 @@ # ;-) VERSION = '1.1.7' # PIL version -PILLOW_VERSION = '2.3.0' # Pillow +PILLOW_VERSION = '2.4.0' # Pillow _plugins = ['ArgImagePlugin', 'BmpImagePlugin', diff --git a/_imaging.c b/_imaging.c index 138ce0101..c47868b81 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.3.0" +#define PILLOW_VERSION "2.4.0" #include "Python.h" diff --git a/setup.py b/setup.py index 0fac33186..93918debd 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ except (ImportError, OSError): NAME = 'Pillow' -VERSION = '2.3.0' +VERSION = '2.4.0' TCL_ROOT = None JPEG_ROOT = None JPEG2K_ROOT = None