Skip to content

Commit 7f6ebfb

Browse files
committed
Added release notes for python-pillow#8500
1 parent a7338f8 commit 7f6ebfb

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

docs/releasenotes/11.1.0.rst

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
11.1.0
2+
------
3+
4+
Security
5+
========
6+
7+
TODO
8+
^^^^
9+
10+
TODO
11+
12+
:cve:`YYYY-XXXXX`: TODO
13+
^^^^^^^^^^^^^^^^^^^^^^^
14+
15+
TODO
16+
17+
Backwards Incompatible Changes
18+
==============================
19+
20+
TODO
21+
^^^^
22+
23+
Deprecations
24+
============
25+
26+
TODO
27+
^^^^
28+
29+
TODO
30+
31+
API Changes
32+
===========
33+
34+
TODO
35+
^^^^
36+
37+
TODO
38+
39+
API Additions
40+
=============
41+
42+
Check for zlib-ng
43+
^^^^^^^^^^^^^^^^^
44+
45+
You can check if Pillow has been built against the zlib-ng version of the
46+
zlib library, and what version of zlib-ng is being used::
47+
48+
from PIL import features
49+
features.check_feature("zlib_ng") # True or False
50+
features.version_feature("zlib_ng") # "2.2.2" for example, or None
51+
52+
Other Changes
53+
=============
54+
55+
zlib-ng in wheels
56+
^^^^^^^^^^^^^^^^^
57+
58+
Wheels are now built against zlib-ng for improved speed. In tests, saving a PNG
59+
was found to be more than twice as fast at higher compression levels.

docs/releasenotes/index.rst

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

17+
11.1.0
1718
11.0.0
1819
10.4.0
1920
10.3.0

0 commit comments

Comments
 (0)