Bump version to 0.10.2 and update CHANGELOG
This commit is contained in:
parent
3cb826fe8b
commit
56718b3344
4 changed files with 13 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -213,4 +213,12 @@
|
|||
|
||||
## [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.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
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>",
|
||||
"Chris Hennick <hennickc@amazon.com>"]
|
||||
license = "MIT"
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -49,6 +49,6 @@ mod zipcrypto;
|
|||
///
|
||||
/// ```toml
|
||||
/// [dependencies]
|
||||
/// zip_next = "=0.10.1"
|
||||
/// zip_next = "=0.10.2"
|
||||
/// ```
|
||||
pub mod unstable;
|
||||
|
|
Loading…
Add table
Reference in a new issue