diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt index d2ea9ce93..575a9e42a 100644 --- a/docs/HISTORY.txt +++ b/docs/HISTORY.txt @@ -7,7 +7,12 @@ Changelog (Pillow) - Add Python 3 support. (Pillow >= 2.0.0 supports Python 2.6, 2.7, 3.2, 3.3. Pillow < 2.0.0 supports Python 2.4, 2.5, 2.6, 2.7.) [fluggo] -- Add experimental Tiff G3/G4 support. +- Add PyPy support (experimental, please see: https://github.com/python-imaging/Pillow/issues/67) + +- Add WebP support. + [lqs] + +- Add Tiff G3/G4 support (experimental) [wiredfool] - Backport PIL's PNG/Zip improvements. @@ -22,9 +27,6 @@ Changelog (Pillow) - Added support for PNG images with transparency palette. [d-schmidt] -- Add WebP support (Python 2.x only, see: https://github.com/python-imaging/Pillow/issues/109) - [lqs] - - Many other bug fixes and enhancements by many other people (see commit log and/or docs/CONTRIBUTORS.txt). 1.7.8 (2012-11-01) diff --git a/setup.py b/setup.py index c128ef5b3..211542bfc 100644 --- a/setup.py +++ b/setup.py @@ -392,7 +392,7 @@ class pil_build_ext(build_ext): (feature.tcl and feature.tk, "TKINTER"), (feature.jpeg, "JPEG"), (feature.zlib, "ZLIB (PNG/ZIP)"), - (feature.tiff, "TIFF G3/G4 read (experimental)"), + (feature.tiff, "TIFF G3/G4 (experimental)"), (feature.freetype, "FREETYPE2"), (feature.lcms, "LITTLECMS"), (feature.webp, "WEBP"),