From 8f0902d23ab7d5ea070903e92f01d0e62bbb1a7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 16:24:43 +0000 Subject: [PATCH] [GitHub Actions] Assemble CHANGELOG and Increment Versions (#34) Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .github/aeruginous-io.cff | 4 +-- .version | 2 +- CHANGELOG.ron | 30 +++++++++++++++++++ CITATION.cff | 4 +-- Cargo.lock | 2 +- Cargo.toml | 2 +- .../20240113_132329_GitHub_Actions_21.ron | 8 ----- .../20240113_132920_GitHub_Actions_24.ron | 8 ----- ..._Actions_readme-link-list-dependencies.ron | 8 ----- ...1936_GitHub_Actions_reading-from-stdin.ron | 14 --------- ...155647_GitHub_Actions_crates-io-upload.ron | 8 ----- src/lib.rs | 2 +- 12 files changed, 38 insertions(+), 54 deletions(-) delete mode 100644 changelog.d/20240113_132329_GitHub_Actions_21.ron delete mode 100644 changelog.d/20240113_132920_GitHub_Actions_24.ron delete mode 100644 changelog.d/20240113_133747_GitHub_Actions_readme-link-list-dependencies.ron delete mode 100644 changelog.d/20240113_151936_GitHub_Actions_reading-from-stdin.ron delete mode 100644 changelog.d/20240113_155647_GitHub_Actions_crates-io-upload.ron diff --git a/.github/aeruginous-io.cff b/.github/aeruginous-io.cff index 6586085..f3b25fb 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-12 +date-released: 2024-01-13 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.1.0 +version: 0.2.0 diff --git a/.version b/.version index 6e8bf73..0ea3a94 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.1.0 +0.2.0 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index 533093c..9104006 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,36 @@ }, 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: 2, + patch: 0, + ), + released: "2024-01-13T16:21:28.970748981Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + ".gitattributes; fixes #21", + ".rustfmt.toml; fixes #24", + "BufReadReader", + "BufReadReader::read_loudly", + "BufReadReader::read_silently", + "CI: upload new crate version to registry on release", + "tests for BufReadReader", + ], + "Changed": [ + "README: list of dependencies", + ], + "Fixed": [ + "typos in documentation", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index b9b5d6a..a80164e 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-12 +date-released: 2024-01-13 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.1.0 +version: 0.2.0 references: - type: software date-released: 2024-01-06 diff --git a/Cargo.lock b/Cargo.lock index 0f4b2a5..b4fb41b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous-io" -version = "0.1.0" +version = "0.2.0" dependencies = [ "sysexits", ] diff --git a/Cargo.toml b/Cargo.toml index 7403977..a98fb66 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.1.0" +version = "0.2.0" diff --git a/changelog.d/20240113_132329_GitHub_Actions_21.ron b/changelog.d/20240113_132329_GitHub_Actions_21.ron deleted file mode 100644 index 1663749..0000000 --- a/changelog.d/20240113_132329_GitHub_Actions_21.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".gitattributes; fixes #21", - ], - }, -) diff --git a/changelog.d/20240113_132920_GitHub_Actions_24.ron b/changelog.d/20240113_132920_GitHub_Actions_24.ron deleted file mode 100644 index 39ca0d7..0000000 --- a/changelog.d/20240113_132920_GitHub_Actions_24.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".rustfmt.toml; fixes #24", - ], - }, -) diff --git a/changelog.d/20240113_133747_GitHub_Actions_readme-link-list-dependencies.ron b/changelog.d/20240113_133747_GitHub_Actions_readme-link-list-dependencies.ron deleted file mode 100644 index 81859d7..0000000 --- a/changelog.d/20240113_133747_GitHub_Actions_readme-link-list-dependencies.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Changed": [ - "README: list of dependencies", - ], - }, -) diff --git a/changelog.d/20240113_151936_GitHub_Actions_reading-from-stdin.ron b/changelog.d/20240113_151936_GitHub_Actions_reading-from-stdin.ron deleted file mode 100644 index 0fee0d1..0000000 --- a/changelog.d/20240113_151936_GitHub_Actions_reading-from-stdin.ron +++ /dev/null @@ -1,14 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "BufReadReader", - "BufReadReader::read_loudly", - "BufReadReader::read_silently", - "tests for BufReadReader", - ], - "Fixed": [ - "typos in documentation", - ], - }, -) diff --git a/changelog.d/20240113_155647_GitHub_Actions_crates-io-upload.ron b/changelog.d/20240113_155647_GitHub_Actions_crates-io-upload.ron deleted file mode 100644 index a271462..0000000 --- a/changelog.d/20240113_155647_GitHub_Actions_crates-io-upload.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "CI: upload new crate version to registry on release", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index 7969a39..2201c22 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -137,6 +137,6 @@ pub use reading::{BufReadReader, PathBufLikeReader}; pub const NAME: &str = "aeruginous-io"; /// This crate's version. -pub const VERSION: &str = "v0.1.0"; +pub const VERSION: &str = "v0.2.0"; /******************************************************************************/