summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2018-03-11 17:53:15 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2018-03-11 17:53:15 +0100
commit4241713ea670c042e8a871226d3c45959826cd14 (patch)
tree3a12ebef1134fcdcdf04a63e2fcbadb749f32ed6
parent66edd7ade36c871a15f2cb230ae1c054f842555a (diff)
downloadpsutil-4241713ea670c042e8a871226d3c45959826cd14.tar.gz
give credits to @alxchk for #1220; bump up version
-rw-r--r--CREDITS4
-rw-r--r--HISTORY.rst6
-rw-r--r--psutil/__init__.py2
3 files changed, 10 insertions, 2 deletions
diff --git a/CREDITS b/CREDITS
index 798b36e3..e0d748da 100644
--- a/CREDITS
+++ b/CREDITS
@@ -486,7 +486,7 @@ I: 1042, 1079
N: Oleksii Shevchuk
W: https://github.com/alxchk
-I: 1077, 1093, 1091
+I: 1077, 1093, 1091, 1220
N: Prodesire
W: https://github.com/Prodesire
@@ -519,3 +519,5 @@ I: 1169
N: Dan Vinakovsky
W: https://github.com/hexaclock
I: 1216
+
+N
diff --git a/HISTORY.rst b/HISTORY.rst
index 463860c2..bf378ed8 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -5,6 +5,12 @@
XXXX-XX-XX
+**Enhancements**
+
+- 1120_: [SunOS] cmdline() could be truncated at the 15th character when
+ reading it from /proc. An extra effort is made by reading it from process
+ address space first.
+
**Bug fixes**
- 1216_: fix compatibility with python 2.6 on Windows (patch by Dan Vinakovsky)
diff --git a/psutil/__init__.py b/psutil/__init__.py
index 97767f11..a11988ba 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -218,7 +218,7 @@ __all__ = [
]
__all__.extend(_psplatform.__extra__all__)
__author__ = "Giampaolo Rodola'"
-__version__ = "5.4.3"
+__version__ = "5.4.4"
version_info = tuple([int(num) for num in __version__.split('.')])
AF_LINK = _psplatform.AF_LINK
POWER_TIME_UNLIMITED = _common.POWER_TIME_UNLIMITED