Bump version to 0.10.2 and update CHANGELOG

This commit is contained in:
Chris Hennick 2023-06-07 22:26:49 -07:00
parent 3cb826fe8b
commit 56718b3344
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
4 changed files with 13 additions and 5 deletions

View file

@ -213,4 +213,12 @@
## [0.10.1] ## [0.10.1]
- Date and time conversion methods now return `DateTimeRangeError` rather than `()` on error. ### 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.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zip_next" name = "zip_next"
version = "0.10.1" version = "0.10.2"
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>", authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>",
"Chris Hennick <hennickc@amazon.com>"] "Chris Hennick <hennickc@amazon.com>"]
license = "MIT" license = "MIT"

View file

@ -32,14 +32,14 @@ With all default features:
```toml ```toml
[dependencies] [dependencies]
zip_next = "0.10.1" zip_next = "0.10.2"
``` ```
Without the default features: Without the default features:
```toml ```toml
[dependencies] [dependencies]
zip_next = { version = "0.10.1", default-features = false } zip_next = { version = "0.10.2", default-features = false }
``` ```
The features available are: The features available are:

View file

@ -49,6 +49,6 @@ mod zipcrypto;
/// ///
/// ```toml /// ```toml
/// [dependencies] /// [dependencies]
/// zip_next = "=0.10.1" /// zip_next = "=0.10.2"
/// ``` /// ```
pub mod unstable; pub mod unstable;