From cd332a02ed0c4cb6686928d3ac7bc8cdea8fca84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 14:40:47 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#1520) 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 +- ...41616_GitHub_Actions_manual-clap-update.ron | 8 -------- src/lib.rs | 2 +- 8 files changed, 26 insertions(+), 16 deletions(-) delete mode 100644 changelog.d/20240629_141616_GitHub_Actions_manual-clap-update.ron diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index 0c177936..bf50d4ac 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-14 +date-released: 2024-06-29 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.15 +version: 3.7.16 diff --git a/.version b/.version index 03d7b8fb..36f601f1 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.15 +3.7.16 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index cfe6fbd5..bd2cc2f2 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: 16, + ), + released: "2024-06-29T14:29:25.748116470Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Changed": [ + "update Clap library manually", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 71b77253..8a814864 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-14 +date-released: 2024-06-29 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.15 +version: 3.7.16 references: - type: software date-released: 2024-04-15 diff --git a/Cargo.lock b/Cargo.lock index bade79e6..87f04448 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.15" +version = "3.7.16" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 837c50f1..0e323dbf 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.15" +version = "3.7.16" diff --git a/changelog.d/20240629_141616_GitHub_Actions_manual-clap-update.ron b/changelog.d/20240629_141616_GitHub_Actions_manual-clap-update.ron deleted file mode 100644 index 8e39c8c2..00000000 --- a/changelog.d/20240629_141616_GitHub_Actions_manual-clap-update.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Changed": [ - "update Clap library manually", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index 0bc0ff6a..bf7ebcb6 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.15"; +pub const VERSION: &str = "v3.7.16"; /******************************************************************************/