diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index dec2eec..457aab2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -9,7 +9,7 @@ jobs: validate-release-tag: - if: github.repository == 'sphuber/aiida-shell' + if: github.repository == 'aiidateam/aiida-shell' runs-on: ubuntu-latest steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 86405a5..369642c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change log +## `v0.8.2` - 2026-01-14 + +### Features +- Add support for AiiDA monitors [[0522862]](https://github.com/aiidateam/aiida-shell/commit/05228623ed7e2f8432b16416a133b3a97c1fca11) + ## `v0.8.1` - 2025-06-03 ### Fixes diff --git a/src/aiida_shell/__init__.py b/src/aiida_shell/__init__.py index c639e12..8f54f2e 100644 --- a/src/aiida_shell/__init__.py +++ b/src/aiida_shell/__init__.py @@ -1,5 +1,5 @@ """AiiDA plugin that makes running shell commands easy.""" -__version__ = '0.8.1' +__version__ = '0.8.2' from .calculations import ShellJob from .data import EntryPointData, PickledData, ShellCode