diff --git a/.github/aeruginous.cff b/.github/aeruginous.cff index e19b53f2..5ad92c6a 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.6.2 +version: 3.6.3 diff --git a/.version b/.version index b7276283..4a788a01 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.6.2 +3.6.3 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index cda5c5e9..8095463e 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,33 @@ }, 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: 6, + patch: 3, + ), + released: "2024-01-02T21:18:22.499789244Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + "Cargo.toml: declare new feature ``uncrlf`` as part of ``utilities``", + "Just: CI step for feature ``uncrlf``", + "Uncrlf", + "uncrlf: unit tests", + ], + "Changed": [ + "uncrlf: outsource logic to dedicated struct", + ], + "Fixed": [ + "uncrlf: removing all `\\r` occurrences", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index a8abb88c..41877808 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.6.2 +version: 3.6.3 references: - type: software date-released: 2023-09-15 diff --git a/Cargo.lock b/Cargo.lock index 01e4e664..c241eb95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous" -version = "3.6.2" +version = "3.6.3" dependencies = [ "anstyle", "cargo-lock", diff --git a/Cargo.toml b/Cargo.toml index d0f562f5..457213f9 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.6.2" +version = "3.6.3" diff --git a/changelog.d/20240102_211136_GitHub_Actions_cargo-feature-uncrlf.ron b/changelog.d/20240102_211136_GitHub_Actions_cargo-feature-uncrlf.ron deleted file mode 100644 index 1c343fd3..00000000 --- a/changelog.d/20240102_211136_GitHub_Actions_cargo-feature-uncrlf.ron +++ /dev/null @@ -1,17 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "Cargo.toml: declare new feature ``uncrlf`` as part of ``utilities``", - "Just: CI step for feature ``uncrlf``", - "Uncrlf", - "uncrlf: unit tests", - ], - "Changed": [ - "uncrlf: outsource logic to dedicated struct", - ], - "Fixed": [ - "uncrlf: removing all `\\r` occurrences", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index fcb44a05..c17c2e5f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -500,6 +500,6 @@ pub const SELF_DESCRIPTION: &str = "The Aeruginous Open Source Development Toolbox"; /// This crate's version. -pub const VERSION: &str = "v3.6.2"; +pub const VERSION: &str = "v3.6.3"; /******************************************************************************/