diff --git a/CHANGELOG.md b/CHANGELOG.md index f8491470..cd79e391 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # Changelog -## [0.6.4] - unreleased +## [0.6.4] ### Changed - [#333](https://github.com/zip-rs/zip/pull/333): disabled the default features of the `time` dependency, and also `formatting` and `macros`, as they were enabled by mistake. + - Deprecated [`DateTime::from_time`](https://docs.rs/zip/0.6/zip/struct.DateTime.html#method.from_time) in favor of [`DateTime::try_from`](https://docs.rs/zip/0.6/zip/struct.DateTime.html#impl-TryFrom-for-DateTime) \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index d122af46..caf6a07f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip" -version = "0.6.3" +version = "0.6.4" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick "] license = "MIT" repository = "https://github.com/zip-rs/zip.git" diff --git a/README.md b/README.md index 9b3c0599..3754a7c0 100644 --- a/README.md +++ b/README.md @@ -35,14 +35,14 @@ With all default features: ```toml [dependencies] -zip = "0.6.3" +zip = "0.6.4" ``` Without the default features: ```toml [dependencies] -zip = { version = "0.6.3", default-features = false } +zip = { version = "0.6.4", default-features = false } ``` The features available are: