diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c4c57099..417a47c9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.2.6 (2024-01-31) + +**Changes** + +* Include only the files necessary to build the crate for publishing in the Cargo.toml. + ## v0.2.5 (2024-01-31) **Improves** diff --git a/Cargo.toml b/Cargo.toml index ab7b3910e..189f088bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "count-digits" -version = "0.2.5" +version = "0.2.6" authors = ["Erik Nordin "] description = "A no-std trait to count the digits of integer types in various number bases." homepage = "https://github.com/nordzilla/count-digits" @@ -10,6 +10,7 @@ categories = [ "algorithms", "mathematics", "no-std" ] license = "MIT" edition = "2021" rust-version = "1.71.1" +include = ["src/lib.rs", "LICENSE", "README.md", "CHANGELOG.md"] [dev-dependencies] criterion = { version = "0.5.1", features = ["html_reports"] }