From ffa7c6549e5dca6db5cab3b114c30e3365f289cb Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Tue, 16 Jul 2024 08:38:47 +0200 Subject: [PATCH] Release `v0.7.3` --- CHANGELOG.md | 7 +++++++ CITATION.cff | 4 ++-- src/aiida_shell/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c625078..c3073cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change log +## `v0.7.3` - 2024-07-16 + +### Fixes + +- `ShellJob`: Fix bug when `metadata.options.output_filename` is specified [[437f2b3]](https://github.com/sphuber/aiida-shell/commit/437f2b3c656fec275ff8a5a4f710b469f6c3264c) + + ## `v0.7.2` - 2024-07-01 ### Fixes diff --git a/CITATION.cff b/CITATION.cff index d7312c9..c8005c3 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,7 +1,7 @@ cff-version: 1.2.0 title: aiida-shell abstract: AiiDA plugin that makes running shell commands easy. -date-released: "2023-11-02" +date-released: "2024-07-16" message: Please cite this software using these metadata. type: software authors: @@ -10,5 +10,5 @@ authors: email: mail@sphuber.net affiliation: École Polytechnique Fédérale de Lausanne repository-code: "https://github.com/sphuber/aiida-shell" -version: 0.7.2 +version: 0.7.3 license: MIT License diff --git a/src/aiida_shell/__init__.py b/src/aiida_shell/__init__.py index 4592c58..51841e6 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.7.2' +__version__ = '0.7.3' from .calculations import ShellJob from .data import EntryPointData, PickledData, ShellCode