summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2019-03-05 13:29:59 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2019-03-05 13:29:59 +0100
commit888f138a45f42f1b9e12cfca2109307a32314d2c (patch)
treefc7a13e0081681251fb6335b826b1bfb2836f8a8
parent74bdb6487cece4b2acb8ddf716ecd3a645d287d8 (diff)
downloadpsutil-888f138a45f42f1b9e12cfca2109307a32314d2c.tar.gz
bump up version, fix some doc issues
-rw-r--r--HISTORY.rst2
-rw-r--r--docs/DEVGUIDE.rst2
-rw-r--r--docs/index.rst4
-rw-r--r--psutil/__init__.py2
4 files changed, 6 insertions, 4 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 18bd4833..4e3c79cc 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -17,6 +17,8 @@
call) significantly speeding up different functions and methods.
- 1426_: [Windows] PAGESIZE and number of processors is now calculated on
startup.
+- 1428_: in case of error, the traceback message now shows the underlying C
+ function called which failed.
- 1433_: new Process.parents() method. (idea by Ghislain Le Meur)
- 1437_: pids() are returned in sorted order.
- 1442_: python3 is now the default interpreter used by Makefile.
diff --git a/docs/DEVGUIDE.rst b/docs/DEVGUIDE.rst
index df031bde..f587ebcc 100644
--- a/docs/DEVGUIDE.rst
+++ b/docs/DEVGUIDE.rst
@@ -46,7 +46,7 @@ Some useful make commands:
.. code-block:: bash
make install # install
- make setup-dev-env # install useful dev libs (fkale8, unittest2, etc.)
+ make setup-dev-env # install useful dev libs (flake8, unittest2, etc.)
make test # run unit tests
make test-memleaks # run memory leak tests
make test-coverage # run test coverage
diff --git a/docs/index.rst b/docs/index.rst
index 6be1dc7b..c25384c2 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -2633,11 +2633,11 @@ Timeline
- 2019-03-05:
`5.6.0 <https://pypi.org/project/psutil/5.6.0/#files>`__ -
`what's new <https://github.com/giampaolo/psutil/blob/master/HISTORY.rst#560>`__ -
- `diff <https://github.com/giampaolo/psutil/compare/release-5.5.1...release-5.6.0#files_bucket>`
+ `diff <https://github.com/giampaolo/psutil/compare/release-5.5.1...release-5.6.0#files_bucket>`__
- 2019-02-15:
`5.5.1 <https://pypi.org/project/psutil/5.5.1/#files>`__ -
`what's new <https://github.com/giampaolo/psutil/blob/master/HISTORY.rst#551>`__ -
- `diff <https://github.com/giampaolo/psutil/compare/release-5.5.0...release-5.5.1#files_bucket>`
+ `diff <https://github.com/giampaolo/psutil/compare/release-5.5.0...release-5.5.1#files_bucket>`__
- 2019-01-23:
`5.5.0 <https://pypi.org/project/psutil/5.5.0/#files>`__ -
`what's new <https://github.com/giampaolo/psutil/blob/master/HISTORY.rst#550>`__ -
diff --git a/psutil/__init__.py b/psutil/__init__.py
index 449a27ca..bd0d5e4d 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -217,7 +217,7 @@ __all__ = [
__all__.extend(_psplatform.__extra__all__)
__author__ = "Giampaolo Rodola'"
-__version__ = "5.6.0"
+__version__ = "5.6.1"
version_info = tuple([int(num) for num in __version__.split('.')])
_timer = getattr(time, 'monotonic', time.time)