From 399e0fc27b55fe7f66c07600ef5c92a455ac1a10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 16:30:36 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#1063) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous.cff | 2 +- .version | 2 +- CHANGELOG.ron | 19 +++++++++++++++++++ CITATION.cff | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- ...61556_GitHub_Actions_fragment-from-rst.ron | 9 --------- src/lib.rs | 4 ++-- 9 files changed, 27 insertions(+), 17 deletions(-) delete mode 100644 changelog.d/20240109_161556_GitHub_Actions_fragment-from-rst.ron diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index 0fb2ecaf..a066815b 100644 --- a/.github/aeruginous.cff +++ b/.github/aeruginous.cff @@ -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.0 +version: 3.7.1 diff --git a/.version b/.version index 7c69a55d..a76ccff2 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.7.0 +3.7.1 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 36010085..84430314 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: 1, + ), + released: "2024-01-09T16:23:32.499679532Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Fixed": [ + "Fragment::from_rst: do not discard continued lines", + "test case for Fragment::from_rst", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index d82ae933..feca4fb1 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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.0 +version: 3.7.1 references: - type: software date-released: 2023-09-15 diff --git a/Cargo.lock b/Cargo.lock index bf156aef..810de5e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.7.0" +version = "3.7.1" dependencies = [ "anstyle", "cargo-lock", diff --git a/Cargo.toml b/Cargo.toml index 681e0ff4..20fe7e72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,4 +51,4 @@ name = "aeruginous" readme = "README.md" repository = "https://github.com/kevinmatthes/aeruginous-rs" rust-version = "1.75.0" -version = "3.7.0" +version = "3.7.1" diff --git a/README.md b/README.md index ef58b9c2..acf166e8 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 **75.14%**. +The current code coverage is **75.22%**. ## License diff --git a/changelog.d/20240109_161556_GitHub_Actions_fragment-from-rst.ron b/changelog.d/20240109_161556_GitHub_Actions_fragment-from-rst.ron deleted file mode 100644 index a7037e34..00000000 --- a/changelog.d/20240109_161556_GitHub_Actions_fragment-from-rst.ron +++ /dev/null @@ -1,9 +0,0 @@ -( - references: {}, - changes: { - "Fixed": [ - "Fragment::from_rst: do not discard continued lines", - "test case for Fragment::from_rst", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index 3d0d15bf..5e16994e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -93,7 +93,7 @@ //! 1. [`uncrlf`](#uncrlf) //! --> //! -//! The current code coverage is **75.14%**. +//! The current code coverage is **75.22%**. //! //! ## License //! @@ -511,6 +511,6 @@ pub const SELF_DESCRIPTION: &str = "The Aeruginous Open Source Development Toolbox"; /// This crate's version. -pub const VERSION: &str = "v3.7.0"; +pub const VERSION: &str = "v3.7.1"; /******************************************************************************/