diff --git a/CHANGELOG.md b/CHANGELOG.md index c246cbfb..22ff838e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -256,4 +256,10 @@ ### Changed - - The package no longer includes tests or examples. \ No newline at end of file + - The package no longer includes tests or examples. + +## [1.1.0] + +### Changed + + - Eliminated a custom `AtomicU64` type by replacing it with `OnceLock` in the only place it's used. \ No newline at end of file diff --git a/README.md b/README.md index 02f4b637..54214bd4 100644 --- a/README.md +++ b/README.md @@ -33,14 +33,14 @@ With all default features: ```toml [dependencies] -zip_next = "1.0.1" +zip_next = "1.1.0" ``` Without the default features: ```toml [dependencies] -zip_next = { version = "1.0.1", default-features = false } +zip_next = { version = "1.1.0", default-features = false } ``` The features available are: diff --git a/src/lib.rs b/src/lib.rs index ee3374e0..9149b318 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,6 +53,6 @@ mod zipcrypto; /// /// ```toml /// [dependencies] -/// zip_next = "=1.0.1" +/// zip_next = "=1.1.0" /// ``` pub mod unstable;