Bump version to 0.10.3
This commit is contained in:
parent
9ba7c80761
commit
8b6baf9fdd
4 changed files with 10 additions and 4 deletions
|
@ -222,3 +222,9 @@
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Where possible, methods are now `const`. This improves performance, especially when reading.
|
- Where possible, methods are now `const`. This improves performance, especially when reading.
|
||||||
|
|
||||||
|
## [0.10.3]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zip_next"
|
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>",
|
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"
|
||||||
|
|
|
@ -32,14 +32,14 @@ With all default features:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zip_next = "0.10.2"
|
zip_next = "0.10.3"
|
||||||
```
|
```
|
||||||
|
|
||||||
Without the default features:
|
Without the default features:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zip_next = { version = "0.10.2", default-features = false }
|
zip_next = { version = "0.10.3", default-features = false }
|
||||||
```
|
```
|
||||||
|
|
||||||
The features available are:
|
The features available are:
|
||||||
|
|
|
@ -49,6 +49,6 @@ mod zipcrypto;
|
||||||
///
|
///
|
||||||
/// ```toml
|
/// ```toml
|
||||||
/// [dependencies]
|
/// [dependencies]
|
||||||
/// zip_next = "=0.10.2"
|
/// zip_next = "=0.10.3"
|
||||||
/// ```
|
/// ```
|
||||||
pub mod unstable;
|
pub mod unstable;
|
||||||
|
|
Loading…
Add table
Reference in a new issue