Skip to content

Commit

Permalink
chore: prepare for release 1.5.0 (#60)
Browse files Browse the repository at this point in the history
* chore: prepare for release 1.5.0

* use stable release of python 3.10
  • Loading branch information
frostming committed Aug 4, 2022
1 parent b68e3df commit ace4525
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.rst
@@ -1,3 +1,13 @@
1.5.0 (2022-08-04)
==================

Features
--------

- Drop support for Python version older than 3.4. `#50 <https://github.com/sarugaku/shellingham/issues/50>`_
- Support detecting NuShell. `#56 <https://github.com/sarugaku/shellingham/issues/56>`_


1.4.0 (2021-02-01)
==================

Expand Down
2 changes: 1 addition & 1 deletion src/shellingham/__init__.py
Expand Up @@ -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):
Expand Down

0 comments on commit ace4525

Please sign in to comment.