Skip to content

Commit 857b884

Browse files
authored
Merge pull request #8885 from radarhere/releasenotes
2 parents d52c2db + 7a0092f commit 857b884

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed

docs/deprecations.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ ExifTags.IFD.Makernote
186186
Image.Image.get_child_images()
187187
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188188

189-
.. deprecated:: 11.2.0
189+
.. deprecated:: 11.2.1
190190

191191
``Image.Image.get_child_images()`` has been deprecated. and will be removed in Pillow
192192
13 (2026-10-15). It will be moved to ``ImageFile.ImageFile.get_child_images()``. The

docs/handbook/image-file-formats.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ DXT1 and DXT5 pixel formats can be read, only in ``RGBA`` mode.
170170
in ``P`` mode.
171171

172172

173-
.. versionadded:: 11.2.0
173+
.. versionadded:: 11.2.1
174174
DXT1, DXT3, DXT5, BC2, BC3 and BC5 pixel formats can be saved::
175175

176176
im.save(out, pixel_format="DXT1")

docs/reference/ImageDraw.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ Methods
391391
the relative alignment of lines. Use the ``anchor`` parameter to
392392
specify the alignment to ``xy``.
393393

394-
.. versionadded:: 11.2.0 ``"justify"``
394+
.. versionadded:: 11.2.1 ``"justify"``
395395
:param direction: Direction of the text. It can be ``"rtl"`` (right to
396396
left), ``"ltr"`` (left to right) or ``"ttb"`` (top to bottom).
397397
Requires libraqm.
@@ -462,7 +462,7 @@ Methods
462462
the relative alignment of lines. Use the ``anchor`` parameter to
463463
specify the alignment to ``xy``.
464464

465-
.. versionadded:: 11.2.0 ``"justify"``
465+
.. versionadded:: 11.2.1 ``"justify"``
466466
:param direction: Direction of the text. It can be ``"rtl"`` (right to
467467
left), ``"ltr"`` (left to right) or ``"ttb"`` (top to bottom).
468468
Requires libraqm.
@@ -609,7 +609,7 @@ Methods
609609
the relative alignment of lines. Use the ``anchor`` parameter to
610610
specify the alignment to ``xy``.
611611

612-
.. versionadded:: 11.2.0 ``"justify"``
612+
.. versionadded:: 11.2.1 ``"justify"``
613613
:param direction: Direction of the text. It can be ``"rtl"`` (right to
614614
left), ``"ltr"`` (left to right) or ``"ttb"`` (top to bottom).
615615
Requires libraqm.
@@ -663,7 +663,7 @@ Methods
663663
the relative alignment of lines. Use the ``anchor`` parameter to
664664
specify the alignment to ``xy``.
665665

666-
.. versionadded:: 11.2.0 ``"justify"``
666+
.. versionadded:: 11.2.1 ``"justify"``
667667
:param direction: Direction of the text. It can be ``"rtl"`` (right to
668668
left), ``"ltr"`` (left to right) or ``"ttb"`` (top to bottom).
669669
Requires libraqm.

docs/reference/ImageGrab.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ or the clipboard to a PIL image memory.
4444
:param window:
4545
HWND, to capture a single window. Windows only.
4646

47-
.. versionadded:: 11.2.0
47+
.. versionadded:: 11.2.1
4848
:return: An image
4949

5050
.. py:function:: grabclipboard()

docs/releasenotes/11.2.0.rst renamed to docs/releasenotes/11.2.1.rst

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
11.2.0
1+
11.2.1
22
------
33

4+
.. warning::
5+
6+
The release of Pillow *11.2.0* was halted prematurely, due to hitting PyPI's
7+
project size limit and concern over the size of Pillow wheels containing libavif.
8+
The PyPI limit has now been increased and Pillow *11.2.1* has been released
9+
instead, without libavif included in the wheels.
10+
To avoid confusion, the incomplete 11.2.0 release has been removed from PyPI.
11+
412
Security
513
========
614

@@ -17,7 +25,7 @@ Deprecations
1725
Image.Image.get_child_images()
1826
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1927

20-
.. deprecated:: 11.2.0
28+
.. deprecated:: 11.2.1
2129

2230
``Image.Image.get_child_images()`` has been deprecated. and will be removed in Pillow
2331
13 (2026-10-15). It will be moved to ``ImageFile.ImageFile.get_child_images()``. The
@@ -106,5 +114,5 @@ Pillow images can also be converted to Arrow objects::
106114
Reading and writing AVIF images
107115
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
108116

109-
Pillow can now read and write AVIF images. If you are building Pillow from source, this
110-
will require libavif 1.0.0 or later.
117+
Pillow can now read and write AVIF images when built from source with libavif 1.0.0
118+
or later.

docs/releasenotes/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ expected to be backported to earlier versions.
1414
.. toctree::
1515
:maxdepth: 2
1616

17-
11.2.0
17+
11.2.1
1818
11.1.0
1919
11.0.0
2020
10.4.0

src/PIL/Image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3362,7 +3362,7 @@ def fromarrow(
33623362
33633363
See: :ref:`arrow-support` for more detailed information
33643364
3365-
.. versionadded:: 11.2.0
3365+
.. versionadded:: 11.2.1
33663366
33673367
"""
33683368
if not hasattr(obj, "__arrow_c_array__"):

0 commit comments

Comments
 (0)