diff --git a/.github/aeruginous-io.cff b/.github/aeruginous-io.cff index 9b23e45..53077ce 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-28 +date-released: 2024-02-02 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.6.0 +version: 0.7.0 diff --git a/.version b/.version index a918a2a..faef31a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.6.0 +0.7.0 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index bbcc973..3350b50 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: 7, + patch: 0, + ), + released: "2024-02-02T16:40:59.029670692Z", + introduction: None, + changes: ( + references: {}, + changes: { + "Added": [ + "VectorReader", + "VectorReader::read_loudly", + "VectorReader::read_silently", + "tests for VectorReader", + ], + }, + ), + ), ( references: {}, version: ( diff --git a/CITATION.cff b/CITATION.cff index 1735195..24504a1 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-28 +date-released: 2024-02-02 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.6.0 +version: 0.7.0 references: - type: software date-released: 2024-01-18 diff --git a/Cargo.lock b/Cargo.lock index 469130c..eafb16b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous-io" -version = "0.6.0" +version = "0.7.0" dependencies = [ "sysexits", ] diff --git a/Cargo.toml b/Cargo.toml index 81d47a9..f6db808 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.6.0" +version = "0.7.0" diff --git a/README.md b/README.md index 3d735ec..3c1f731 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Toolbox. 1. [License](#license) 1. [Dependencies](#dependencies) -The current code coverage is **87.60%**. +The current code coverage is **88.97%**. ## License diff --git a/changelog.d/20240202_163408_GitHub_Actions_vector-reader.ron b/changelog.d/20240202_163408_GitHub_Actions_vector-reader.ron deleted file mode 100644 index 9cf67ad..0000000 --- a/changelog.d/20240202_163408_GitHub_Actions_vector-reader.ron +++ /dev/null @@ -1,11 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "VectorReader", - "VectorReader::read_loudly", - "VectorReader::read_silently", - "tests for VectorReader", - ], - }, -) diff --git a/src/lib.rs b/src/lib.rs index ebb5c23..6280708 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -70,7 +70,7 @@ //! 1. [License](#license) //! 1. [Dependencies](#dependencies) //! -//! The current code coverage is **87.60%**. +//! The current code coverage is **88.97%**. //! //! ## License //! @@ -140,6 +140,6 @@ pub use writing::{OptionTruncation, PathBufLikeTruncation, Writer}; pub const NAME: &str = "aeruginous-io"; /// This crate's version. -pub const VERSION: &str = "v0.6.0"; +pub const VERSION: &str = "v0.7.0"; /******************************************************************************/