Skip to content

Commit

Permalink
give credit to @colesbury / Sam Gross for #2401 and #2427
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jun 24, 2024
1 parent 73af407 commit c034e66
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -831,3 +831,7 @@ I: 2376
N: Anthony Ryan
W: https://github.com/anthonyryan1
I: 2272

N: Sam Gross
W: https://github.com/colesbury
I: 2401, 2427
18 changes: 15 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
*Bug tracker at https://github.com/giampaolo/psutil/issues*

6.0.0 2024-06-18
================
6.0.1 (IN DEVELOPMENT)
======================

XXXX-XX-XX

**Bug fixes**

- 2427_: psutil (segfault) on import in the free-threaded (no GIL) version of
Python 3.13. (patch by Sam Gross)

6.0.0
======

2024-06-18

**Enhancements**

Expand All @@ -14,7 +26,7 @@
been reused. This makes `process_iter()`_ around 20x times faster.
- 2396_: a new ``psutil.process_iter.cache_clear()`` API can be used the clear
`process_iter()`_ internal cache.
- 2401_, Support building with free-threaded CPython 3.13.
- 2401_, Support building with free-threaded CPython 3.13. (patch by Sam Gross)
- 2407_: `Process.connections()`_ was renamed to `Process.net_connections()`_.
The old name is still available, but it's deprecated (triggers a
``DeprecationWarning``) and will be removed in the future.
Expand Down
2 changes: 1 addition & 1 deletion psutil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
AF_LINK = _psplatform.AF_LINK

__author__ = "Giampaolo Rodola'"
__version__ = "6.0.0"
__version__ = "6.0.1"
version_info = tuple([int(num) for num in __version__.split('.')])

_timer = getattr(time, 'monotonic', time.time)
Expand Down

0 comments on commit c034e66

Please sign in to comment.