diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index 654ba80e..9ca97c09 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-03-31 +date-released: 2024-04-15 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.11 +version: 3.7.12 diff --git a/.version b/.version index 584a914c..f7e5aa84 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.11 +3.7.12 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 06d9d308..0c8dcef1 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,27 @@ }, 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: 12, + ), + released: "2024-04-15T21:00:23.208468827Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Changed": [ + "MSRV: 1.77.2", + ], + "Fixed": [ + "CI: code coverage report asset upload; fixes #1317", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 0421cddd..3d9e71c5 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-03-31 +date-released: 2024-04-15 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.11 +version: 3.7.12 references: - type: software date-released: 2024-04-15 diff --git a/Cargo.lock b/Cargo.lock index 880556a6..1e8d354c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.11" +version = "3.7.12" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 1a09adad..4248602b 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.77.2" -version = "3.7.11" +version = "3.7.12" diff --git a/changelog.d/20240415_203131_GitHub_Actions_1317.ron b/changelog.d/20240415_203131_GitHub_Actions_1317.ron deleted file mode 100644 index 7bbe2a35..00000000 --- a/changelog.d/20240415_203131_GitHub_Actions_1317.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "CI: code coverage report asset upload; fixes #1317", - ], - }, -) diff --git a/changelog.d/20240415_203140_GitHub_Actions_cff-update-1713212701.ron b/changelog.d/20240415_203140_GitHub_Actions_cff-update-1713212701.ron deleted file mode 100644 index 7382c131..00000000 --- a/changelog.d/20240415_203140_GitHub_Actions_cff-update-1713212701.ron +++ /dev/null @@ -1,4 +0,0 @@ -( - references: {}, - changes: {"Changed":["MSRV: 1.77.2"]}, -) diff --git a/src/lib.rs b/src/lib.rs index 92ad9c1d..ead3ad5a 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.11"; +pub const VERSION: &str = "v3.7.12"; /******************************************************************************/