diff --git a/Cargo.lock b/Cargo.lock index 556f342..8d6a42d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -658,7 +658,7 @@ dependencies = [ [[package]] name = "weezl" -version = "0.1.7" +version = "0.1.8" dependencies = [ "criterion 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index d9f89b0..e70ff49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "weezl" -version = "0.1.7" +version = "0.1.8" license = "MIT OR Apache-2.0" description = "Fast LZW compression and decompression." authors = ["The image-rs Developers"] diff --git a/Changes.md b/Changes.md index d750a60..788616e 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,7 @@ +## Version 0.1.8 + +- Fixed incorrect state after `Decoder::reset` + ## Version 0.1.7 - Implicit reset is now supported for decoding.