summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2019-11-12 21:25:49 +0800
committerGiampaolo Rodola <g.rodola@gmail.com>2019-11-12 21:25:49 +0800
commit8e18da55f39622378dfa579ea9cb6d909ab69576 (patch)
treea2cb880e2c8f9faf7d767c7536d146932138d85e
parentef032158fd72790ab2be14e99c45c32d66d96291 (diff)
downloadpsutil-8e18da55f39622378dfa579ea9cb6d909ab69576.tar.gz
update HISTORY
-rw-r--r--CREDITS4
-rw-r--r--HISTORY.rst10
-rw-r--r--psutil/__init__.py2
3 files changed, 15 insertions, 1 deletions
diff --git a/CREDITS b/CREDITS
index 71b92e16..3af651fb 100644
--- a/CREDITS
+++ b/CREDITS
@@ -638,3 +638,7 @@ I: 1607
N: Bernát Gábor
W: https://github.com/gaborbernat
I: 1565
+
+N: Nathan Houghton
+W: https://github.com/n1000
+I: 1619
diff --git a/HISTORY.rst b/HISTORY.rst
index 698db920..f5c5e2e9 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,5 +1,15 @@
*Bug tracker at https://github.com/giampaolo/psutil/issues*
+5.6.6
+=====
+
+XXXX-XX-XX
+
+**Bug fixes**
+
+- 1619_: [OpenBSD] compilation fails due to C syntax error. (patch by Nathan
+ Houghton)
+
5.6.5
=====
diff --git a/psutil/__init__.py b/psutil/__init__.py
index 3f380589..4df2fec0 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -222,7 +222,7 @@ __all__ = [
__all__.extend(_psplatform.__extra__all__)
__author__ = "Giampaolo Rodola'"
-__version__ = "5.6.5"
+__version__ = "5.6.6"
version_info = tuple([int(num) for num in __version__.split('.')])
_timer = getattr(time, 'monotonic', time.time)