diff --git a/docs/releasenotes/4.0.0.rst b/docs/releasenotes/4.0.0.rst new file mode 100644 index 000000000..4d21a2e54 --- /dev/null +++ b/docs/releasenotes/4.0.0.rst @@ -0,0 +1,51 @@ +4.0.0 +----- + +Python 2.6 and 3.2 Dropped +========================== + +Pillow 4.0 no longer supports Python 2.6 and 3.2. We will not be +creating binaries, testing, or retaining compatibility with these +releases. This release removes some workarounds for those Python +releases, so the final working version of Pillow on 2.6 or 3.2 is 3.4.2. + +Support added for Python 3.6 +============================ + +Pillow 4.0 supports Python 3.6. + +OleFileIO.py +============ + +OleFileIO.py has been removed as a vendored file and is now installed +from the upstream olefile pypi package. All internal dependencies are +redirected to the olefile package. Direct accesses to +``PIL.OlefileIO`` raises a deprecation warning, then patches the +upstream olefile into ``sys.modules`` in its place. + +SGI image save +============== + +It is now possible to save images in modes ``L``, ``RGB``, and +``RGBA`` to the uncompressed SGI image format. + +Zero sized images +================= + +Pillow 3.4.0 removed support for creating images with (0,0) size. This +has been reenabled, restoring pre 3.4 behavior. + +Internal handles_eof flag +========================= + +The ``handles_eof flag`` for decoding images has been removed, as there +were no internal users of the flag. Anyone maintaining image decoders +outside of the Pillow source tree should consider using the cleanup +function pointers instead. + +Image.core.stretch removed +========================== + +The stretch function on the core image object has been removed. This +used to be for enlarging the image, but has been aliased to resize +recently. diff --git a/docs/releasenotes/index.rst b/docs/releasenotes/index.rst index 8c484af44..e32bf7e40 100644 --- a/docs/releasenotes/index.rst +++ b/docs/releasenotes/index.rst @@ -6,6 +6,7 @@ Release Notes .. toctree:: :maxdepth: 2 + 4.0.0 3.4.0 3.3.2 3.3.0