Skip to content

Commit

Permalink
Merge pull request #8367 from radarhere/releasenotes
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Sep 10, 2024
2 parents e91aedb + 5c67178 commit 44b2f5e
Showing 1 changed file with 18 additions and 3 deletions.
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 @@ -115,10 +120,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 @@ -132,6 +145,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

0 comments on commit 44b2f5e

Please sign in to comment.