From d3688f964324e799e2b9f8f963d5ab08dbadde54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:22:28 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#1494) 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 +- ...20240614_105920_GitHub_Actions_rust-1.x.ron | 8 -------- src/lib.rs | 2 +- 8 files changed, 26 insertions(+), 16 deletions(-) delete mode 100644 changelog.d/20240614_105920_GitHub_Actions_rust-1.x.ron diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index 66369e9c..0c177936 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-06-06 +date-released: 2024-06-14 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.14 +version: 3.7.15 diff --git a/.version b/.version index 35c6ac51..03d7b8fb 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.14 +3.7.15 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 27fd1865..cfe6fbd5 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: 15, + ), + released: "2024-06-14T11:18:07.554915233Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Changed": [ + "MSRV: 1.79.0", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index dd9c1350..fea875ad 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-06-06 +date-released: 2024-06-14 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.14 +version: 3.7.15 references: - type: software date-released: 2024-04-15 diff --git a/Cargo.lock b/Cargo.lock index dfa9de3c..fc760611 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.14" +version = "3.7.15" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 59b6f5c9..83750946 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.79.0" -version = "3.7.14" +version = "3.7.15" diff --git a/changelog.d/20240614_105920_GitHub_Actions_rust-1.x.ron b/changelog.d/20240614_105920_GitHub_Actions_rust-1.x.ron deleted file mode 100644 index 532811f6..00000000 --- a/changelog.d/20240614_105920_GitHub_Actions_rust-1.x.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Changed": [ - "MSRV: 1.79.0", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index c471052c..0bc0ff6a 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.14"; +pub const VERSION: &str = "v3.7.15"; /******************************************************************************/