diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e19cd702..2e4e0cab 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ Change Log ========== +Version 2.0.4 +============= + +Fixed +----- + +* Fixed bug introduced in 2.0.3 that only affected the Slurm backend. +* Fixed the behavior of the cancel command (can now cancel multiple target, even if cancelling one of them fails). + Version 2.0.3 ============= diff --git a/conda/meta.yaml b/conda/meta.yaml index 5d7badae..41f17fb6 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = "gwf" %} -{% set version = "2.0.3" %} +{% set version = "2.0.4" %} package: name: "{{ name|lower }}" diff --git a/src/gwf/__init__.py b/src/gwf/__init__.py index aa76fa01..c350877d 100644 --- a/src/gwf/__init__.py +++ b/src/gwf/__init__.py @@ -3,6 +3,6 @@ from .core import AnonymousTarget, Target from .workflow import TargetList, Workflow -__version__ = "2.0.3" +__version__ = "2.0.4" __all__ = ("Target", "AnonymousTarget", "Workflow", "TargetList")