From b308baac411818eeb9811482923a589d36d8271d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 03:50:19 +0000 Subject: [PATCH] [Documentation] Release (#1316) * [GitHub Actions] Assemble CHANGELOG and Increment Versions * Skip ::= correct CHANGELOG --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Kevin Matthes <92332892+kevinmatthes@users.noreply.github.com> --- .github/aeruginous.cff | 4 ++-- .version | 2 +- CHANGELOG.ron | 18 ++++++++++++++++++ CITATION.cff | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- changelog.d/msrv.rst | 4 ---- src/lib.rs | 2 +- 8 files changed, 26 insertions(+), 12 deletions(-) delete mode 100644 changelog.d/msrv.rst diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index 2f29389d..8cb1cdf1 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-08 +date-released: 2024-03-22 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.9 +version: 3.7.10 diff --git a/.version b/.version index c77a7de8..f06fb9e9 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.9 +3.7.10 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index b43de7c5..307e46a3 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,24 @@ }, 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: 10, + ), + released: "2024-03-22T03:41:04.335685439Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Changed": [ + "MSRV: 1.77.0", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 83ed27a5..114a2c0f 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-08 +date-released: 2024-03-22 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.9 +version: 3.7.10 references: - type: software date-released: 2024-03-06 diff --git a/Cargo.lock b/Cargo.lock index 62126dcd..05bd99bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.9" +version = "3.7.10" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 60ee48a4..e33292eb 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.0" -version = "3.7.9" +version = "3.7.10" diff --git a/changelog.d/msrv.rst b/changelog.d/msrv.rst deleted file mode 100644 index 41b29464..00000000 --- a/changelog.d/msrv.rst +++ /dev/null @@ -1,4 +0,0 @@ -Changed -....... - -- MSRV: 1.77.0 diff --git a/src/lib.rs b/src/lib.rs index 99022866..3f00837e 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.9"; +pub const VERSION: &str = "v3.7.10"; /******************************************************************************/