Skip to content

Commit

Permalink
Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed May 31, 2021
1 parent 8214dd1 commit 7afc501
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
v4.4.0
=======

* #300: Restore compatibility in the result from
``Distribution.entry_points`` (``EntryPoints``) to honor
expectations in older implementations and issuing
deprecation warnings for these cases:

- ``EntryPoints`` objects are once again mutable, allowing
for ``sort()`` and other list-based mutation operations.
Avoid deprecation warnings by casting to a
mutable sequence (e.g.
``list(dist.entry_points).sort()``).

- ``EntryPoints`` results once again allow
for access by index. To avoid deprecation warnings,
cast the result to a Sequence first
(e.g. ``tuple(dist.entry_points)[0]``).

v4.3.1
=======

Expand Down

0 comments on commit 7afc501

Please sign in to comment.