From 3c35357b2ebf20d57851a04c5bd3dda603c05825 Mon Sep 17 00:00:00 2001 From: Chris Hennick <hennickc@amazon.com> Date: Mon, 8 Apr 2024 10:53:47 -0700 Subject: [PATCH] Bump version to 1.0.0 --- Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 9 ++++++--- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1ff9e48d..081e1162 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] 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>", "Chris Hennick <hennickc@amazon.com>"] license = "MIT" diff --git a/README.md b/README.md index d5a7325e..45800949 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ zip_next [](https://github.com/Pr0methean/zip-next/actions?query=branch%3Amaster+workflow%3ACI) [](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 ---- @@ -33,14 +33,14 @@ With all default features: ```toml [dependencies] -zip_next = "0.10.3" +zip_next = "1.0.0" ``` Without the default features: ```toml [dependencies] -zip_next = { version = "0.10.3", default-features = false } +zip_next = { version = "1.0.0", default-features = false } ``` The features available are: diff --git a/src/lib.rs b/src/lib.rs index a4feacec..fd4f81fc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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, //! there are some zip archives that are difficult to read or write. //! @@ -18,7 +18,10 @@ //! | | Reading | Writing | //! | ------- | ------ | ------- | //! | Deflate | ✅ [->](`crate::ZipArchive::by_name`) | ✅ [->](`crate::write::FileOptions::compression_method`) | -//! +//! | Deflate64 | ✅ | | +//! | Bzip2 | ✅ | ✅ | +//! | AES encryption | ✅ | ✅ | +//! | ZipCrypto deprecated encryption | ✅ | ✅ | //! //! #![warn(missing_docs)] @@ -49,6 +52,6 @@ mod zipcrypto; /// /// ```toml /// [dependencies] -/// zip_next = "=0.11.0" +/// zip_next = "=1.0.0" /// ``` pub mod unstable;