From 1bc42a4bf57a24c1f53dbaf7a8a4d3eb7a867481 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Mar 2024 17:22:50 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#1342) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous.cff | 4 ++-- .version | 2 +- CHANGELOG.ron | 18 ++++++++++++++++++ CITATION.cff | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- ...40331_171043_GitHub_Actions_msrv-1.77.1.ron | 8 -------- changelog.d/msrv.rst | 4 ---- src/lib.rs | 2 +- 9 files changed, 26 insertions(+), 20 deletions(-) delete mode 100644 changelog.d/20240331_171043_GitHub_Actions_msrv-1.77.1.ron delete mode 100644 changelog.d/msrv.rst diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index 8cb1cdf1..654ba80e 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-22 +date-released: 2024-03-31 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.10 +version: 3.7.11 diff --git a/.version b/.version index f06fb9e9..584a914c 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.10 +3.7.11 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 307e46a3..06d9d308 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: 11, + ), + released: "2024-03-31T17:17:37.713187202Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Changed": [ + "MSRV: 1.77.1", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index be7207c1..cfd3ddb5 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-22 +date-released: 2024-03-31 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.10 +version: 3.7.11 references: - type: software date-released: 2024-03-27 diff --git a/Cargo.lock b/Cargo.lock index aafadd61..4e2e0187 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.10" +version = "3.7.11" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 09aacbe4..4d2caaf0 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.1" -version = "3.7.10" +version = "3.7.11" diff --git a/changelog.d/20240331_171043_GitHub_Actions_msrv-1.77.1.ron b/changelog.d/20240331_171043_GitHub_Actions_msrv-1.77.1.ron deleted file mode 100644 index 63036b27..00000000 --- a/changelog.d/20240331_171043_GitHub_Actions_msrv-1.77.1.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Changed": [ - "MSRV: 1.77.1", - ], - }, -) diff --git a/changelog.d/msrv.rst b/changelog.d/msrv.rst deleted file mode 100644 index 68515396..00000000 --- a/changelog.d/msrv.rst +++ /dev/null @@ -1,4 +0,0 @@ -Changed -....... - -- MSRV: 1.77.1 diff --git a/src/lib.rs b/src/lib.rs index 1b949634..6900460f 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.10"; +pub const VERSION: &str = "v3.7.11"; /******************************************************************************/