forked from python-pillow/Pillow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added release notes for python-pillow#6961 and python-pillow#6954
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
9.5.0 | ||
----- | ||
|
||
Backwards Incompatible Changes | ||
============================== | ||
|
||
TODO | ||
^^^^ | ||
|
||
TODO | ||
|
||
Deprecations | ||
============ | ||
|
||
TODO | ||
^^^^ | ||
|
||
TODO | ||
|
||
API Changes | ||
=========== | ||
|
||
TODO | ||
^^^^ | ||
|
||
TODO | ||
|
||
API Additions | ||
============= | ||
|
||
Added ``dpi`` argument when saving PDFs | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
When saving a PDF, resolution could already be specified using the | ||
``resolution`` argument. Now, a tuple of ``(x_resolution, y_resolution)`` can | ||
be provided as ``dpi``. If both are provided, ``dpi`` will override | ||
``resolution``. | ||
|
||
Added ``corners`` argument to ``ImageDraw.rounded_rectangle()`` | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
:py:meth:`.ImageDraw.rounded_rectangle` now accepts a keyword argument of | ||
``corners``. This a tuple of booleans, specifying whether to round each corner, | ||
``(top_left, top_right, bottom_right, bottom_left)``. | ||
|
||
Security | ||
======== | ||
|
||
TODO | ||
^^^^ | ||
|
||
TODO | ||
|
||
Other Changes | ||
============= | ||
|
||
TODO | ||
^^^^ | ||
|
||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ expected to be backported to earlier versions. | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
9.5.0 | ||
9.4.0 | ||
9.3.0 | ||
9.2.0 | ||
|