diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index bfa4d131..2f29389d 100644 --- a/.github/aeruginous.cff +++ b/.github/aeruginous.cff @@ -4,7 +4,7 @@ authors: family-names: Matthes given-names: Kevin cff-version: 1.2.0 -date-released: 2024-02-16 +date-released: 2024-03-08 keywords: - Rust - aeruginous @@ -36,4 +36,4 @@ repository-artifact: https://crates.io/crates/aeruginous repository-code: https://github.com/kevinmatthes/aeruginous-rs title: Aeruginous url: https://github.com/kevinmatthes/aeruginous-rs -version: 3.7.8 +version: 3.7.9 diff --git a/.version b/.version index a0fc9e07..c77a7de8 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.8 +3.7.9 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 96f0fe94..b43de7c5 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,31 @@ }, introduction: Some("All notable changes to this project are documented in this file.\n\nThe format is based on `Keep a Changelog`_."), sections: [ + ( + references: {}, + version: ( + major: 3, + minor: 7, + patch: 9, + ), + released: "2024-03-08T18:14:39.632052497Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + "CI: manual trigger for rustfmt workflow; fixes #1238", + ], + "Changed": [ + "CI: speed up CI by defining parallel checks", + ], + "Fixed": [ + "CI: error when running coverage workflow on forks", + "CI: simplify PR workflow", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index bc157d9b..be69d984 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,7 +4,7 @@ authors: family-names: Matthes given-names: Kevin cff-version: 1.2.0 -date-released: 2024-02-16 +date-released: 2024-03-08 keywords: - Rust - aeruginous @@ -36,7 +36,7 @@ repository-artifact: https://crates.io/crates/aeruginous repository-code: https://github.com/kevinmatthes/aeruginous-rs title: Aeruginous url: https://github.com/kevinmatthes/aeruginous-rs -version: 3.7.8 +version: 3.7.9 references: - type: software date-released: 2024-03-06 diff --git a/Cargo.lock b/Cargo.lock index 95a9a08f..4041a151 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.8" +version = "3.7.9" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 3ff1984f..9d538525 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,4 +52,4 @@ name = "aeruginous" readme = "README.md" repository = "https://github.com/kevinmatthes/aeruginous-rs" rust-version = "1.76.0" -version = "3.7.8" +version = "3.7.9" diff --git a/changelog.d/1238.rst b/changelog.d/1238.rst deleted file mode 100644 index fbe05799..00000000 --- a/changelog.d/1238.rst +++ /dev/null @@ -1,4 +0,0 @@ -Added -..... - -- CI: manual trigger for rustfmt workflow; fixes #1238 diff --git a/changelog.d/20240218_215702_GitHub_Actions_parallel-ci.ron b/changelog.d/20240218_215702_GitHub_Actions_parallel-ci.ron deleted file mode 100644 index a91d0c5c..00000000 --- a/changelog.d/20240218_215702_GitHub_Actions_parallel-ci.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Changed": [ - "CI: speed up CI by defining parallel checks", - ], - }, -) diff --git a/changelog.d/20240301_184631_GitHub_Actions_pr-coverage.ron b/changelog.d/20240301_184631_GitHub_Actions_pr-coverage.ron deleted file mode 100644 index 815f09b9..00000000 --- a/changelog.d/20240301_184631_GitHub_Actions_pr-coverage.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "CI: error when running coverage workflow on forks", - ], - }, -) diff --git a/changelog.d/20240302_193739_GitHub_Actions_skip-code-coverage-determination.ron b/changelog.d/20240302_193739_GitHub_Actions_skip-code-coverage-determination.ron deleted file mode 100644 index 81a62feb..00000000 --- a/changelog.d/20240302_193739_GitHub_Actions_skip-code-coverage-determination.ron +++ /dev/null @@ -1,4 +0,0 @@ -( - references: {}, - changes: {}, -) diff --git a/changelog.d/20240308_180820_GitHub_Actions_change-code-coverage-workflow.ron b/changelog.d/20240308_180820_GitHub_Actions_change-code-coverage-workflow.ron deleted file mode 100644 index 67f74c76..00000000 --- a/changelog.d/20240308_180820_GitHub_Actions_change-code-coverage-workflow.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "CI: simplify PR workflow", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index dcba1c45..e58aab0b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -573,6 +573,6 @@ pub const SELF_DESCRIPTION: &str = "The Aeruginous Open Source Development Toolbox"; /// This crate's version. -pub const VERSION: &str = "v3.7.8"; +pub const VERSION: &str = "v3.7.9"; /******************************************************************************/