From 7f9e4f336ae01dfc4660d10eda56004c4615388a Mon Sep 17 00:00:00 2001 From: Erik Nordin Date: Wed, 31 Jan 2024 20:45:00 -0600 Subject: [PATCH 1/3] Add the include field to Cargo.toml --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index ab7b3910e..1473eba51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } From 7a2e2ef2cae7bb3679aa1c1199a31a0121d0643e Mon Sep 17 00:00:00 2001 From: Erik Nordin Date: Wed, 31 Jan 2024 20:45:25 -0600 Subject: [PATCH 2/3] Add changelog entry for v0.2.6 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) 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** From 06c3a1526014ced0e5a9943b7e038f2aa4234e03 Mon Sep 17 00:00:00 2001 From: Erik Nordin Date: Wed, 31 Jan 2024 20:46:02 -0600 Subject: [PATCH 3/3] Bump version (v0.2.5 => 0.2.6) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1473eba51..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"