Skip to content

Commit 7afc501

Browse files
committed
Update changelog.
1 parent 8214dd1 commit 7afc501

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

CHANGES.rst

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
v4.4.0
2+
=======
3+
4+
* #300: Restore compatibility in the result from
5+
``Distribution.entry_points`` (``EntryPoints``) to honor
6+
expectations in older implementations and issuing
7+
deprecation warnings for these cases:
8+
9+
- ``EntryPoints`` objects are once again mutable, allowing
10+
for ``sort()`` and other list-based mutation operations.
11+
Avoid deprecation warnings by casting to a
12+
mutable sequence (e.g.
13+
``list(dist.entry_points).sort()``).
14+
15+
- ``EntryPoints`` results once again allow
16+
for access by index. To avoid deprecation warnings,
17+
cast the result to a Sequence first
18+
(e.g. ``tuple(dist.entry_points)[0]``).
19+
120
v4.3.1
221
=======
322

0 commit comments

Comments
 (0)