From 57f8d6b62c17bb0dc2e384aaddbb9873959b01aa Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Tue, 2 May 2023 18:53:54 -0700 Subject: [PATCH] Bump version to 0.7.0.1 so that crates.io will pick up an updated README --- CHANGELOG.md | 8 +++++++- Cargo.toml | 2 +- README.md | 7 ++++--- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14d7d221..d898f1cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,4 +88,10 @@ ### Added - - Method `is_writing_file` - indicates whether a file is open for writing. \ No newline at end of file + - 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. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 108cc0a9..edd532f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip_next" -version = "0.7.0" +version = "0.7.0.1" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick ", "Chris Hennick "] license = "MIT" diff --git a/README.md b/README.md index 1048e3a6..143ce4d4 100644 --- a/README.md +++ b/README.md @@ -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: