Bump version to 0.7.0.1 so that crates.io will pick up an updated README

This commit is contained in:
Chris Hennick 2023-05-02 18:53:54 -07:00
parent 3c537ae695
commit 57f8d6b62c
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
3 changed files with 12 additions and 5 deletions

View file

@ -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.

View file

@ -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"

View file

@ -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: