From ad9bff23cbb9d72b6347981d260f5512c9869845 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 12:53:18 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#1471) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous.cff | 4 ++-- .version | 2 +- CHANGELOG.ron | 20 +++++++++++++++++++ CITATION.cff | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- ...itHub_Actions_renovate-match-dep-names.ron | 8 -------- ...8_150654_GitHub_Actions_manual-updates.ron | 8 -------- .../20240606_122820_GitHub_Actions_1467.ron | 8 -------- src/lib.rs | 2 +- 10 files changed, 28 insertions(+), 32 deletions(-) delete mode 100644 changelog.d/20240527_190800_GitHub_Actions_renovate-match-dep-names.ron delete mode 100644 changelog.d/20240528_150654_GitHub_Actions_manual-updates.ron delete mode 100644 changelog.d/20240606_122820_GitHub_Actions_1467.ron diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index a7da9cf5..66369e9c 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-05-27 +date-released: 2024-06-06 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.13 +version: 3.7.14 diff --git a/.version b/.version index 214b521f..35c6ac51 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.13 +3.7.14 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 5143b9b1..27fd1865 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,26 @@ }, 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: 14, + ), + released: "2024-06-06T12:46:42.506325516Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Fixed": [ + "Renovate: use ``matchDepNames`` instead of ``matchPackageNames``", + "issues related to ``sysexits`` update", + "update all dependencies manually", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index b3c929d0..76750a88 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-05-27 +date-released: 2024-06-06 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.13 +version: 3.7.14 references: - type: software date-released: 2024-04-15 diff --git a/Cargo.lock b/Cargo.lock index df1fc6aa..2051a0b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.13" +version = "3.7.14" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 7c0817b0..5ae40bec 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.78.0" -version = "3.7.13" +version = "3.7.14" diff --git a/changelog.d/20240527_190800_GitHub_Actions_renovate-match-dep-names.ron b/changelog.d/20240527_190800_GitHub_Actions_renovate-match-dep-names.ron deleted file mode 100644 index 0bd0728c..00000000 --- a/changelog.d/20240527_190800_GitHub_Actions_renovate-match-dep-names.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "Renovate: use ``matchDepNames`` instead of ``matchPackageNames``", - ], - }, -) diff --git a/changelog.d/20240528_150654_GitHub_Actions_manual-updates.ron b/changelog.d/20240528_150654_GitHub_Actions_manual-updates.ron deleted file mode 100644 index 4281c796..00000000 --- a/changelog.d/20240528_150654_GitHub_Actions_manual-updates.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "update all dependencies manually", - ], - }, -) diff --git a/changelog.d/20240606_122820_GitHub_Actions_1467.ron b/changelog.d/20240606_122820_GitHub_Actions_1467.ron deleted file mode 100644 index 694a5cf4..00000000 --- a/changelog.d/20240606_122820_GitHub_Actions_1467.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "issues related to ``sysexits`` update", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index 69aa58da..a5d81396 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.13"; +pub const VERSION: &str = "v3.7.14"; /******************************************************************************/