From ace45254557977bb8d0a7c511d16c074ec95576b Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Thu, 4 Aug 2022 10:19:54 +0800 Subject: [PATCH] chore: prepare for release 1.5.0 (#60) * chore: prepare for release 1.5.0 * use stable release of python 3.10 --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 10 ++++++++++ src/shellingham/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39ed967..a50df11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.7, 3.8, 3.9, 3.10.0-alpha.7] + python-version: [3.7, 3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3177c12..b6eae08 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,13 @@ +1.5.0 (2022-08-04) +================== + +Features +-------- + +- Drop support for Python version older than 3.4. `#50 `_ +- Support detecting NuShell. `#56 `_ + + 1.4.0 (2021-02-01) ================== diff --git a/src/shellingham/__init__.py b/src/shellingham/__init__.py index 9fdca84..0ce2e19 100644 --- a/src/shellingham/__init__.py +++ b/src/shellingham/__init__.py @@ -4,7 +4,7 @@ from ._core import ShellDetectionFailure -__version__ = "1.4.1.dev0" +__version__ = "1.5.0" def detect_shell(pid=None, max_depth=10):