Bump version to 1.0.0

This commit is contained in:
Chris Hennick 2024-04-08 10:53:47 -07:00
parent 804fb27309
commit 3c35357b2e
3 changed files with 10 additions and 7 deletions

View file

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

View file

@ -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) [![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) [![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 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:

View file

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