Skip to content

Commit

Permalink
update HISTORY + bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Sep 2, 2022
1 parent c7c7bbc commit 274dd47
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
19 changes: 12 additions & 7 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
*Bug tracker at https://github.com/giampaolo/psutil/issues*

5.9.2 (IN DEVELOPMENT)
======================

XXXX-XX-XX

**Bug fixes**

- 2113, [FreeBSD]: __FreeBSD_version used in mem.c without including
<sys/param.h>
- 2128, [NetBSD]: fix bugs in swap code
- 2093_, [FreeBSD]: `pids()`_ may fail with ENOMEM. Dynamically increase
the ``malloc()`` buffer size until it's big enough.
- 2095_, [Linux]: `net_if_stats()`_ returns incorrect interface speed for 100GbE
network cards.
- 2113_, [FreeBSD]: `virtual_memory()`_ may raise ENOMEM due to missing
``#include <sys/param.h>`` directive. (patch by Peter Jeremy)
- 2128_, [NetBSD]: `swap_memory()`_ was miscalculated. (patch by Thomas Klausner)

5.9.1
=====
Expand All @@ -31,10 +40,6 @@
``min`` and ``max`` are in MHz.
- 2050_, [Linux]: `virtual_memory()`_ may raise ``ValueError`` if running in a
LCX container.
- 2093_, [FreeBSD]: `psutil.pids()` may fail with ENOMEM. Dynamically increase
the ``malloc()`` buffer size until it's big enough.
- 2095_, [Linux]: `net_if_stats()` returns incorrect interface speed for 100GbE
network cards

5.9.0
=====
Expand Down
2 changes: 1 addition & 1 deletion psutil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
AF_LINK = _psplatform.AF_LINK

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

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

0 comments on commit 274dd47

Please sign in to comment.