Bump version to 1.0.0
This commit is contained in:
parent
804fb27309
commit
3c35357b2e
3 changed files with 10 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zip_next"
|
name = "zip_next"
|
||||||
version = "0.11.0"
|
version = "1.0.0"
|
||||||
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"
|
||||||
|
|
|
@ -4,7 +4,7 @@ zip_next
|
||||||
[](https://github.com/Pr0methean/zip-next/actions?query=branch%3Amaster+workflow%3ACI)
|
[](https://github.com/Pr0methean/zip-next/actions?query=branch%3Amaster+workflow%3ACI)
|
||||||
[](https://crates.io/crates/zip_next)
|
[](https://crates.io/crates/zip_next)
|
||||||
|
|
||||||
[Documentation](https://docs.rs/zip_next/0.10.1/zip_next/)
|
[Documentation](https://docs.rs/zip_next/1.0.0/zip_next/)
|
||||||
|
|
||||||
Info
|
Info
|
||||||
----
|
----
|
||||||
|
@ -33,14 +33,14 @@ With all default features:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zip_next = "0.10.3"
|
zip_next = "1.0.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
Without the default features:
|
Without the default features:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zip_next = { version = "0.10.3", default-features = false }
|
zip_next = { version = "1.0.0", default-features = false }
|
||||||
```
|
```
|
||||||
|
|
||||||
The features available are:
|
The features available are:
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
//!
|
//!
|
||||||
//! ---
|
//! ---
|
||||||
//!
|
//!
|
||||||
//! [`zip`](`crate`) has support for the most common ZIP archives found in common use.
|
//! [`zip_next`](`crate`) has support for the most common ZIP archives found in common use.
|
||||||
//! However, in special cases,
|
//! However, in special cases,
|
||||||
//! there are some zip archives that are difficult to read or write.
|
//! there are some zip archives that are difficult to read or write.
|
||||||
//!
|
//!
|
||||||
|
@ -18,7 +18,10 @@
|
||||||
//! | | Reading | Writing |
|
//! | | Reading | Writing |
|
||||||
//! | ------- | ------ | ------- |
|
//! | ------- | ------ | ------- |
|
||||||
//! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) |
|
//! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) |
|
||||||
//!
|
//! | Deflate64 | ✅ | |
|
||||||
|
//! | Bzip2 | ✅ | ✅ |
|
||||||
|
//! | AES encryption | ✅ | ✅ |
|
||||||
|
//! | ZipCrypto deprecated encryption | ✅ | ✅ |
|
||||||
//!
|
//!
|
||||||
//!
|
//!
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
@ -49,6 +52,6 @@ mod zipcrypto;
|
||||||
///
|
///
|
||||||
/// ```toml
|
/// ```toml
|
||||||
/// [dependencies]
|
/// [dependencies]
|
||||||
/// zip_next = "=0.11.0"
|
/// zip_next = "=1.0.0"
|
||||||
/// ```
|
/// ```
|
||||||
pub mod unstable;
|
pub mod unstable;
|
||||||
|
|
Loading…
Add table
Reference in a new issue