Bump version number to 1.1 due to MSRV bump

This commit is contained in:
Chris Hennick 2024-04-14 08:03:06 -07:00
parent 3c15ded105
commit 72fde539cd
3 changed files with 10 additions and 4 deletions

View file

@ -256,4 +256,10 @@
### Changed ### Changed
- The package no longer includes tests or examples. - The package no longer includes tests or examples.
## [1.1.0]
### Changed
- Eliminated a custom `AtomicU64` type by replacing it with `OnceLock` in the only place it's used.

View file

@ -33,14 +33,14 @@ With all default features:
```toml ```toml
[dependencies] [dependencies]
zip_next = "1.0.1" zip_next = "1.1.0"
``` ```
Without the default features: Without the default features:
```toml ```toml
[dependencies] [dependencies]
zip_next = { version = "1.0.1", default-features = false } zip_next = { version = "1.1.0", default-features = false }
``` ```
The features available are: The features available are:

View file

@ -53,6 +53,6 @@ mod zipcrypto;
/// ///
/// ```toml /// ```toml
/// [dependencies] /// [dependencies]
/// zip_next = "=1.0.1" /// zip_next = "=1.1.0"
/// ``` /// ```
pub mod unstable; pub mod unstable;