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 ", "Marli Frost ", "Ryan Levick ", "Chris Hennick "] 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 [![Build Status](https://github.com/Pr0methean/zip-next/actions/workflows/ci.yaml/badge.svg)](https://github.com/Pr0methean/zip-next/actions?query=branch%3Amaster+workflow%3ACI) [![Crates.io version](https://img.shields.io/crates/v/zip_next.svg)](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;