From a1a6876af51d4d74e402e44be451e87a68f53a66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:33:51 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#1173) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous.cff | 4 ++-- .version | 2 +- CHANGELOG.ron | 19 +++++++++++++++++++ CITATION.cff | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- ..._213353_GitHub_Actions_io-lib-truncate.ron | 9 --------- src/lib.rs | 4 ++-- 9 files changed, 29 insertions(+), 19 deletions(-) delete mode 100644 changelog.d/20240130_213353_GitHub_Actions_io-lib-truncate.ron diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index fc6085eb..0d81e967 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-01-23 +date-released: 2024-02-02 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.5 +version: 3.7.6 diff --git a/.version b/.version index aaf18d29..897e56be 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.5 +3.7.6 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index efc429af..401db14b 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,25 @@ }, 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: 6, + ), + released: "2024-02-02T15:27:49.280761568Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Deprecated": [ + "PatternWriter::truncate", + "PatternWriter::truncate_silently", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 7b72df95..80bcd7b1 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-01-23 +date-released: 2024-02-02 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.5 +version: 3.7.6 references: - type: software date-released: 2024-01-25 diff --git a/Cargo.lock b/Cargo.lock index 54ab9f02..59d4ffde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.5" +version = "3.7.6" dependencies = [ "aeruginous-io", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index eafb9d0a..46614754 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.75.0" -version = "3.7.5" +version = "3.7.6" diff --git a/README.md b/README.md index a8341da0..d10b1964 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ The Aeruginous Open Source Development Toolbox 1. [`uncrlf`](#uncrlf) --> -The current code coverage is **74.41%**. +The current code coverage is **73.71%**. ## License diff --git a/changelog.d/20240130_213353_GitHub_Actions_io-lib-truncate.ron b/changelog.d/20240130_213353_GitHub_Actions_io-lib-truncate.ron deleted file mode 100644 index 54bb4911..00000000 --- a/changelog.d/20240130_213353_GitHub_Actions_io-lib-truncate.ron +++ /dev/null @@ -1,9 +0,0 @@ -( - references: {}, - changes: { - "Deprecated": [ - "PatternWriter::truncate", - "PatternWriter::truncate_silently", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index a206669a..1dbaa3f4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -93,7 +93,7 @@ //! 1. [`uncrlf`](#uncrlf) //! --> //! -//! The current code coverage is **74.41%**. +//! The current code coverage is **73.71%**. //! //! ## License //! @@ -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.5"; +pub const VERSION: &str = "v3.7.6"; /******************************************************************************/