From 0a1dc44c36700e99b2d4fd4738edddd5fa284c30 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Tue, 10 Jul 2018 13:06:47 +0800 Subject: [PATCH] Release 1.2.3 --- CHANGELOG.rst | 11 +++++++++++ src/shellingham/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 58a5df4..b8eb4db 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +1.2.3 (2018-07-10) +======================= + +Bug Fixes +--------- + +- Check a process’s argument list is valid before peeking into it. This works + around a Heisenbug in VS Code, where a process read from ``/proc`` may + contain an empty argument list. + + 1.2.2 (2018-07-09) ================== diff --git a/src/shellingham/__init__.py b/src/shellingham/__init__.py index 12bba46..f9247a3 100644 --- a/src/shellingham/__init__.py +++ b/src/shellingham/__init__.py @@ -4,7 +4,7 @@ from ._core import ShellDetectionFailure -__version__ = '1.2.2.dev0' +__version__ = '1.2.3' def detect_shell(pid=None, max_depth=6):