diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a799138..04c74761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -213,4 +213,12 @@ ## [0.10.1] - - Date and time conversion methods now return `DateTimeRangeError` rather than `()` on error. \ No newline at end of file +### Changed + + - Date and time conversion methods now return `DateTimeRangeError` rather than `()` on error. + +## [0.10.2] + +### Changed + + - Where possible, methods are now `const`. This improves performance, especially when reading. diff --git a/Cargo.toml b/Cargo.toml index b72d432b..910e3120 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip_next" -version = "0.10.1" +version = "0.10.2" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick ", "Chris Hennick "] license = "MIT" diff --git a/README.md b/README.md index 5158ef16..15910975 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ With all default features: ```toml [dependencies] -zip_next = "0.10.1" +zip_next = "0.10.2" ``` Without the default features: ```toml [dependencies] -zip_next = { version = "0.10.1", default-features = false } +zip_next = { version = "0.10.2", default-features = false } ``` The features available are: diff --git a/src/lib.rs b/src/lib.rs index 89d7e113..662ca779 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,6 +49,6 @@ mod zipcrypto; /// /// ```toml /// [dependencies] -/// zip_next = "=0.10.1" +/// zip_next = "=0.10.2" /// ``` pub mod unstable;