Bump version to 0.7.0.1 so that crates.io will pick up an updated README
This commit is contained in:
parent
3c537ae695
commit
57f8d6b62c
3 changed files with 12 additions and 5 deletions
|
@ -88,4 +88,10 @@
|
|||
|
||||
### Added
|
||||
|
||||
- Method `is_writing_file` - indicates whether a file is open for writing.
|
||||
- Method `is_writing_file` - indicates whether a file is open for writing.
|
||||
|
||||
## [0.7.0.1]
|
||||
|
||||
### Changed
|
||||
|
||||
- Bumped the version number in order to upload an updated README to crates.io.
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zip_next"
|
||||
version = "0.7.0"
|
||||
version = "0.7.0.1"
|
||||
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"
|
||||
|
|
|
@ -10,7 +10,8 @@ Info
|
|||
----
|
||||
|
||||
|
||||
A zip library for rust which supports reading and writing of simple ZIP files. Forked from https://crates.io/crates/zip to add more features and improve test coverage.
|
||||
A zip library for rust which supports reading and writing of simple ZIP files. Forked from https://crates.io/crates/zip
|
||||
to add more features and improve test coverage.
|
||||
|
||||
Supported compression formats:
|
||||
|
||||
|
@ -31,14 +32,14 @@ With all default features:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
zip_next = "0.7.0"
|
||||
zip_next = "0.7.0.1"
|
||||
```
|
||||
|
||||
Without the default features:
|
||||
|
||||
```toml
|
||||
[dependencies]
|
||||
zip_next = { version = "0.7.0", default-features = false }
|
||||
zip_next = { version = "0.7.0.1", default-features = false }
|
||||
```
|
||||
|
||||
The features available are:
|
||||
|
|
Loading…
Add table
Reference in a new issue