summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2018-11-03 15:45:50 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2018-11-03 15:45:50 +0100
commit7ddfa9a637f56dbe236dde285991569783fe444e (patch)
tree4f585fd519dd30b9a85952125eddfc87d14b09f5
parentbb5d032be76980a9e110f03f1203bd35fa85a793 (diff)
downloadpsutil-7ddfa9a637f56dbe236dde285991569783fe444e.tar.gz
#1350: give credits to @amanusk
-rw-r--r--CREDITS2
-rw-r--r--HISTORY.rst7
-rw-r--r--docs/index.rst17
-rw-r--r--psutil/__init__.py2
4 files changed, 11 insertions, 17 deletions
diff --git a/CREDITS b/CREDITS
index b3c8164c..404310f5 100644
--- a/CREDITS
+++ b/CREDITS
@@ -546,7 +546,7 @@ I: 1278
N: Alex Manuskin
W: https://github.com/amanusk
-I: 1284, 1345
+I: 1284, 1345, 1350
N: Sylvain Duchesne
W: https://github.com/sylvainduchesne
diff --git a/HISTORY.rst b/HISTORY.rst
index 5a270184..97f7b522 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,5 +1,12 @@
*Bug tracker at https://github.com/giampaolo/psutil/issues*
+5.5.0
+=====
+
+**Enhancements**
+
+- 1350_: [FreeBSD] added support for sensors_temperatures().
+
5.4.8
=====
diff --git a/docs/index.rst b/docs/index.rst
index 91abffe8..d54129c2 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -702,14 +702,11 @@ Sensors
See also `temperatures.py <https://github.com/giampaolo/psutil/blob/master/scripts/temperatures.py>`__ and `sensors.py <https://github.com/giampaolo/psutil/blob/master/scripts/sensors.py>`__
for an example application.
- Availability: Linux
+ Availability: Linux, FreeBSD
.. versionadded:: 5.1.0
- .. warning::
-
- this API is experimental. Backward incompatible changes may occur if
- deemed necessary.
+ .. versionchanged:: 5.5.0 added FreeBSD support
.. function:: sensors_fans()
@@ -730,11 +727,6 @@ Sensors
.. versionadded:: 5.2.0
- .. warning::
-
- this API is experimental. Backward incompatible changes may occur if
- deemed necessary.
-
.. function:: sensors_battery()
Return battery status information as a named tuple including the following
@@ -774,11 +766,6 @@ Sensors
.. versionchanged:: 5.4.2 added macOS support
- .. warning::
-
- this API is experimental. Backward incompatible changes may occur if
- deemed necessary.
-
Other system info
-----------------
diff --git a/psutil/__init__.py b/psutil/__init__.py
index c2a83fb1..5a5720d7 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -220,7 +220,7 @@ __all__ = [
]
__all__.extend(_psplatform.__extra__all__)
__author__ = "Giampaolo Rodola'"
-__version__ = "5.4.8"
+__version__ = "5.5.0"
version_info = tuple([int(num) for num in __version__.split('.')])
AF_LINK = _psplatform.AF_LINK
POWER_TIME_UNLIMITED = _common.POWER_TIME_UNLIMITED