Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare for release 1.5.0 #60

Merged
merged 2 commits into from Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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