diff --git a/.github/aeruginous-io.cff b/.github/aeruginous-io.cff index a717993..9b23e45 100644 --- a/.github/aeruginous-io.cff +++ b/.github/aeruginous-io.cff @@ -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.5.0 +version: 0.6.0 diff --git a/.version b/.version index 8f0916f..a918a2a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.5.0 +0.6.0 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index f7a3178..bbcc973 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -4,6 +4,27 @@ }, 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: 6, + patch: 0, + ), + released: "2024-01-28T19:14:35.172962196Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + "OptionTruncation", + "OptionTruncation::truncate_loudly", + "OptionTruncation::truncate_silently", + "tests for OptionTruncation", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index dc61c21..1735195 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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.5.0 +version: 0.6.0 references: - type: software date-released: 2024-01-18 diff --git a/Cargo.lock b/Cargo.lock index 0fe8bdd..469130c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous-io" -version = "0.5.0" +version = "0.6.0" dependencies = [ "sysexits", ] diff --git a/Cargo.toml b/Cargo.toml index 1a4392d..81d47a9 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.5.0" +version = "0.6.0" diff --git a/README.md b/README.md index 4cd923b..3d735ec 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Toolbox. 1. [License](#license) 1. [Dependencies](#dependencies) -The current code coverage is **85.59%**. +The current code coverage is **87.60%**. ## License diff --git a/changelog.d/20240128_190857_GitHub_Actions_option-truncation.ron b/changelog.d/20240128_190857_GitHub_Actions_option-truncation.ron deleted file mode 100644 index 8300160..0000000 --- a/changelog.d/20240128_190857_GitHub_Actions_option-truncation.ron +++ /dev/null @@ -1,11 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "OptionTruncation", - "OptionTruncation::truncate_loudly", - "OptionTruncation::truncate_silently", - "tests for OptionTruncation", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index 2a464a5..1b43d7c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -70,7 +70,7 @@ //! 1. [License](#license) //! 1. [Dependencies](#dependencies) //! -//! The current code coverage is **85.59%**. +//! The current code coverage is **87.60%**. //! //! ## License //! @@ -138,6 +138,6 @@ pub use writing::{OptionTruncation, PathBufLikeTruncation, Writer}; pub const NAME: &str = "aeruginous-io"; /// This crate's version. -pub const VERSION: &str = "v0.5.0"; +pub const VERSION: &str = "v0.6.0"; /******************************************************************************/