From 2412141adfe9136807ae3e10eee877a9ee0892dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Jan 2024 16:37:45 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#82) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous-io.cff | 4 ++-- .version | 2 +- CHANGELOG.ron | 22 +++++++++++++++++++ CITATION.cff | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- .../20240128_160529_GitHub_Actions_writer.ron | 11 ---------- ...61808_GitHub_Actions_cff-cargo-mutants.ron | 8 ------- src/lib.rs | 2 +- 9 files changed, 30 insertions(+), 27 deletions(-) delete mode 100644 changelog.d/20240128_160529_GitHub_Actions_writer.ron delete mode 100644 changelog.d/20240128_161808_GitHub_Actions_cff-cargo-mutants.ron diff --git a/.github/aeruginous-io.cff b/.github/aeruginous-io.cff index 4cd5f21..a717993 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-01-25 +date-released: 2024-01-28 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.4.0 +version: 0.5.0 diff --git a/.version b/.version index 1d0ba9e..8f0916f 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.4.0 +0.5.0 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index d25c52d..f7a3178 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,28 @@ }, 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: 5, + patch: 0, + ), + released: "2024-01-28T16:24:24.975888046Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + "CFF: cite CI utility ``cargo-mutants``", + "Writer", + "Writer::write_loudly", + "Writer::write_silently", + "tests for Writer", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 01e3d7d..8bc6e55 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-01-25 +date-released: 2024-01-28 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.4.0 +version: 0.5.0 references: - type: software date-released: 2024-01-18 diff --git a/Cargo.lock b/Cargo.lock index 91f8559..0fe8bdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous-io" -version = "0.4.0" +version = "0.5.0" dependencies = [ "sysexits", ] diff --git a/Cargo.toml b/Cargo.toml index 75a9284..1a4392d 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.75.0" -version = "0.4.0" +version = "0.5.0" diff --git a/changelog.d/20240128_160529_GitHub_Actions_writer.ron b/changelog.d/20240128_160529_GitHub_Actions_writer.ron deleted file mode 100644 index fd68e7e..0000000 --- a/changelog.d/20240128_160529_GitHub_Actions_writer.ron +++ /dev/null @@ -1,11 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "Writer", - "Writer::write_loudly", - "Writer::write_silently", - "tests for Writer", - ], - }, -) diff --git a/changelog.d/20240128_161808_GitHub_Actions_cff-cargo-mutants.ron b/changelog.d/20240128_161808_GitHub_Actions_cff-cargo-mutants.ron deleted file mode 100644 index d2ae20f..0000000 --- a/changelog.d/20240128_161808_GitHub_Actions_cff-cargo-mutants.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "CFF: cite CI utility ``cargo-mutants``", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index e7b3edd..ff3a54d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -138,6 +138,6 @@ pub use writing::{PathBufLikeTruncation, Writer}; pub const NAME: &str = "aeruginous-io"; /// This crate's version. -pub const VERSION: &str = "v0.4.0"; +pub const VERSION: &str = "v0.5.0"; /******************************************************************************/