summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY.rst19
-rw-r--r--psutil/__init__.py2
2 files changed, 13 insertions, 8 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 9bb7d572..1a7f553d 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -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
=====
@@ -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
=====
diff --git a/psutil/__init__.py b/psutil/__init__.py
index 614c3fcc..5c66d217 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -211,7 +211,7 @@ if hasattr(_psplatform.Process, "rlimit"):
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)