From aec0a64d61de2a2148150d663896d68b4e595353 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Wed, 10 Apr 2019 15:28:34 +0800 Subject: [PATCH] Release 1.3.1 --- CHANGELOG.rst | 10 ++++++++++ news/24.bugfix.rst | 1 - src/shellingham/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 news/24.bugfix.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3958798..d3cba2b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,13 @@ +1.3.1 (2019-04-10) +================== + +Bug Fixes +--------- + +- Fix a typo that prevents ash and csh from being detected. `#24 + `_ + + 1.3.0 (2019-03-06) ================== diff --git a/news/24.bugfix.rst b/news/24.bugfix.rst deleted file mode 100644 index 9ee6e80..0000000 --- a/news/24.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a typo that prevents ash and csh from being detected. diff --git a/src/shellingham/__init__.py b/src/shellingham/__init__.py index a2d951d..b834b74 100644 --- a/src/shellingham/__init__.py +++ b/src/shellingham/__init__.py @@ -4,7 +4,7 @@ from ._core import ShellDetectionFailure -__version__ = '1.3.1.dev0' +__version__ = '1.3.1' def detect_shell(pid=None, max_depth=6):