diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a87560b..037f6a8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.2.0 commit = False tag = False diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9d1543f..11b21ef 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -35,7 +35,7 @@ body: attributes: label: Row version description: What version of **row** are you using? - placeholder: 0.1.3 + placeholder: 0.2.0 - type: markdown attributes: value: | diff --git a/Cargo.lock b/Cargo.lock index 126054a..1f6926d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -760,7 +760,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "row" -version = "0.1.3" +version = "0.2.0" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index f8d977e..4ab95fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "row" -version = "0.1.3" +version = "0.2.0" edition = "2021" rust-version = "1.77" description = "Row is a command line tool that helps you manage workflows on HPC resources." diff --git a/doc/src/release-notes.md b/doc/src/release-notes.md index 51af105..33a4d5c 100644 --- a/doc/src/release-notes.md +++ b/doc/src/release-notes.md @@ -1,15 +1,18 @@ # Release notes -## 0.2.0 (not yet released) +## 0.2.0 (2024-06-18) + +**Row** 0.2 adds support for partial-node job submissions on clusters without shared +partitions and fixes GPU job submissions on some clusters. *Added:* -* `warn_[cpus|gpus]_not_multiple_of` key for *clusters.toml* +* `warn_[cpus|gpus]_not_multiple_of` key in *clusters.toml*. *Changed:* -* OLCF Frontier configuration now uses `warn_gpus_not_multiple_of` instead of `require_gpus_multiple_of` -* OLCF Andes configuration now uses `warn_cpus_not_multiple_of` instead of `require_cpus_multiple_of` +* OLCF Frontier configuration now uses `warn_gpus_not_multiple_of` instead of `require_gpus_multiple_of`. +* OLCF Andes configuration now uses `warn_cpus_not_multiple_of` instead of `require_cpus_multiple_of`. *Fixed:*