From cba059e7f29f731c2fdf9c8c3ea7921182b7d6c3 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Tue, 24 Oct 2023 09:48:45 +0800 Subject: [PATCH] Release 1.5.4 --- CHANGELOG.rst | 9 +++++++++ news/81.bugfix.rst | 1 - src/shellingham/__init__.py | 3 +-- 3 files changed, 10 insertions(+), 3 deletions(-) delete mode 100644 news/81.bugfix.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3b15b43..610a2ce 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +1.5.4 (2023-10-24) +================== + +Bug Fixes +--------- + +- Fix a bug that ``detect_shell()`` always returns the host shell on MacOS. `#81 `_ + + 1.5.3 (2023-08-17) ================== diff --git a/news/81.bugfix.rst b/news/81.bugfix.rst deleted file mode 100644 index 40beee4..0000000 --- a/news/81.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug that ``detect_shell()`` always returns the host shell on MacOS. diff --git a/src/shellingham/__init__.py b/src/shellingham/__init__.py index 40867c2..15f7a90 100644 --- a/src/shellingham/__init__.py +++ b/src/shellingham/__init__.py @@ -3,8 +3,7 @@ from ._core import ShellDetectionFailure - -__version__ = "1.5.3" +__version__ = "1.5.4" def detect_shell(pid=None, max_depth=10):