Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions docs/releasenotes/11.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ TiffImagePlugin IFD_LEGACY_API

An unused setting, ``TiffImagePlugin.IFD_LEGACY_API``, has been removed.

WebP 0.4
^^^^^^^^

Support for WebP 0.4 and earlier has been removed; WebP 0.5 is the minimum supported.

Deprecations
============

Expand Down Expand Up @@ -103,10 +108,18 @@ TODO
API Additions
=============

TODO
^^^^
Writing XMP bytes to JPEG and MPO
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

TODO
XMP data can now be saved to JPEG files using an ``xmp`` argument::

im.save("out.jpg", xmp=b"test")

The data can also be set through :py:attr:`~PIL.Image.Image.info`, for use when saving
either JPEG or MPO images::

im.info["xmp"] = b"test"
im.save("out.jpg")

Other Changes
=============
Expand All @@ -120,6 +133,8 @@ of 3.13.0 final (2024-10-01, :pep:`719`).

Pillow 11.0.0 now officially supports Python 3.13.

Support has also been added for the experimental free-threaded mode of :pep:`703`.

C-level Flags
^^^^^^^^^^^^^

Expand Down