Bump version to 0.10.3

This commit is contained in:
Chris Hennick 2023-06-17 17:58:56 -07:00
parent 9ba7c80761
commit 8b6baf9fdd
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
4 changed files with 10 additions and 4 deletions

View file

@ -222,3 +222,9 @@
### Changed
- Where possible, methods are now `const`. This improves performance, especially when reading.
## [0.10.3]
### Changed
- Updated dependencies.

View file

@ -1,6 +1,6 @@
[package]
name = "zip_next"
version = "0.10.2"
version = "0.10.3"
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>"]
license = "MIT"

View file

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

View file

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