diff --git a/Cargo.lock b/Cargo.lock index b3ae0b4..8751f52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,7 +37,7 @@ dependencies = [ [[package]] name = "arithmetic-coding-core" -version = "0.4.1" +version = "0.4.2" dependencies = [ "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 24f0657..bb1600c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ repository.workspace = true rust-version.workspace = true [dependencies] -arithmetic-coding-core = { path = "./arithmetic-coding-core", version = "0.4.1" } +arithmetic-coding-core = { path = "./arithmetic-coding-core", version = "0.4.2" } bitstream-io = "4.4.0" thiserror = { workspace = true } diff --git a/arithmetic-coding-core/CHANGELOG.md b/arithmetic-coding-core/CHANGELOG.md index 11b6778..204b022 100644 --- a/arithmetic-coding-core/CHANGELOG.md +++ b/arithmetic-coding-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2](https://github.com/danieleades/arithmetic-coding/compare/arithmetic-coding-core-v0.4.1...arithmetic-coding-core-v0.4.2) - 2025-08-13 + +### Other + +- improve doc comments and address lints ([#85](https://github.com/danieleades/arithmetic-coding/pull/85)) + ## [0.4.1](https://github.com/danieleades/arithmetic-coding/compare/arithmetic-coding-core-v0.4.0...arithmetic-coding-core-v0.4.1) - 2025-03-11 ### Other diff --git a/arithmetic-coding-core/Cargo.toml b/arithmetic-coding-core/Cargo.toml index adb4129..fef7d2e 100644 --- a/arithmetic-coding-core/Cargo.toml +++ b/arithmetic-coding-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "arithmetic-coding-core" description = "core traits for the 'arithmetic-coding' crate" -version = "0.4.1" +version = "0.4.2" edition.workspace = true license.workspace = true keywords.workspace = true diff --git a/fenwick-model/Cargo.toml b/fenwick-model/Cargo.toml index d113489..60ad380 100644 --- a/fenwick-model/Cargo.toml +++ b/fenwick-model/Cargo.toml @@ -16,6 +16,6 @@ repository.workspace = true rust-version.workspace = true [dependencies] -arithmetic-coding-core = { path = "../arithmetic-coding-core", version = "0.4.1" } +arithmetic-coding-core = { path = "../arithmetic-coding-core", version = "0.4.2" } fenwick = "2.0.0" thiserror = { workspace = true }