From af5514744f0bdd1bbd29b3c7e1b85c56c7e32e72 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 15:15:16 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#113) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous-io.cff | 4 +-- .version | 2 +- CHANGELOG.ron | 25 +++++++++++++++++++ CITATION.cff | 4 +-- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- ..._Actions_call-renovate-linter-directly.ron | 8 ------ ..._GitHub_Actions_path-buf-like-appendix.ron | 14 ----------- src/lib.rs | 4 +-- 10 files changed, 35 insertions(+), 32 deletions(-) delete mode 100644 changelog.d/20240209_194224_GitHub_Actions_call-renovate-linter-directly.ron delete mode 100644 changelog.d/20240211_150158_GitHub_Actions_path-buf-like-appendix.ron diff --git a/.github/aeruginous-io.cff b/.github/aeruginous-io.cff index 53077ce..8e7217f 100644 --- a/.github/aeruginous-io.cff +++ b/.github/aeruginous-io.cff @@ -6,7 +6,7 @@ authors: family-names: Matthes given-names: Kevin cff-version: 1.2.0 -date-released: 2024-02-02 +date-released: 2024-02-11 keywords: - Rust - aeruginous @@ -16,4 +16,4 @@ repository-artifact: https://crates.io/crates/aeruginous-io repository-code: https://github.com/kevinmatthes/aeruginous-io title: aeruginous-io url: https://github.com/kevinmatthes/aeruginous-io -version: 0.7.0 +version: 0.8.0 diff --git a/.version b/.version index faef31a..a3df0a6 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.7.0 +0.8.0 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 3350b50..f427099 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,31 @@ }, 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: 0, + minor: 8, + patch: 0, + ), + released: "2024-02-11T15:11:15.784499830Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + "PathBufLikeAppendix", + "PathBufLikeAppendix::append_loudly", + "PathBufLikeAppendix::append_silently", + "tests for PathBufLikeAppendix", + ], + "Changed": [ + "CI: call Renovate configuration linter directly", + "MSRV: 1.76.0", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 85eab4b..27d5633 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -6,7 +6,7 @@ authors: family-names: Matthes given-names: Kevin cff-version: 1.2.0 -date-released: 2024-02-02 +date-released: 2024-02-11 keywords: - Rust - aeruginous @@ -16,7 +16,7 @@ repository-artifact: https://crates.io/crates/aeruginous-io repository-code: https://github.com/kevinmatthes/aeruginous-io title: aeruginous-io url: https://github.com/kevinmatthes/aeruginous-io -version: 0.7.0 +version: 0.8.0 references: - type: software date-released: 2024-01-18 diff --git a/Cargo.lock b/Cargo.lock index eafb16b..5016776 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous-io" -version = "0.7.0" +version = "0.8.0" dependencies = [ "sysexits", ] diff --git a/Cargo.toml b/Cargo.toml index 34ea05e..eeec153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,4 +14,4 @@ name = "aeruginous-io" readme = "README.md" repository = "https://github.com/kevinmatthes/aeruginous-io" rust-version = "1.76.0" -version = "0.7.0" +version = "0.8.0" diff --git a/README.md b/README.md index 1722891..e2c5e81 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Toolbox. 1. [License](#license) 1. [Dependencies](#dependencies) -The current code coverage is **88.97%**. +The current code coverage is **86.56%**. ## License diff --git a/changelog.d/20240209_194224_GitHub_Actions_call-renovate-linter-directly.ron b/changelog.d/20240209_194224_GitHub_Actions_call-renovate-linter-directly.ron deleted file mode 100644 index 1b91d51..0000000 --- a/changelog.d/20240209_194224_GitHub_Actions_call-renovate-linter-directly.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Changed": [ - "CI: call Renovate configuration linter directly", - ], - }, -) diff --git a/changelog.d/20240211_150158_GitHub_Actions_path-buf-like-appendix.ron b/changelog.d/20240211_150158_GitHub_Actions_path-buf-like-appendix.ron deleted file mode 100644 index 7e4e002..0000000 --- a/changelog.d/20240211_150158_GitHub_Actions_path-buf-like-appendix.ron +++ /dev/null @@ -1,14 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "PathBufLikeAppendix::append_loudly", - "PathBufLikeAppendix", - "PathBufLikeAppendix::append_silently", - "tests for PathBufLikeAppendix", - ], - "Changed": [ - "MSRV: 1.76.0", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index fe03e79..7667e41 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -70,7 +70,7 @@ //! 1. [License](#license) //! 1. [Dependencies](#dependencies) //! -//! The current code coverage is **88.97%**. +//! The current code coverage is **86.56%**. //! //! ## License //! @@ -142,6 +142,6 @@ pub use writing::{ pub const NAME: &str = "aeruginous-io"; /// This crate's version. -pub const VERSION: &str = "v0.7.0"; +pub const VERSION: &str = "v0.8.0"; /******************************************************************************/