From 8c5fadd863992c9d8febe398d7261c418da7390a Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Wed, 10 Jul 2024 19:57:02 -0700 Subject: [PATCH] Prepare v2.1.0 release --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1a4aa24..e98fa88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw-parts" -version = "2.0.0" +version = "2.1.0" authors = ["Ryan Lopopolo "] license = "MIT" edition = "2021" diff --git a/README.md b/README.md index 2ad490f..9ec664c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -raw-parts = "2.0.0" +raw-parts = "2.1.0" ``` Then decompose `Vec`s like: diff --git a/src/lib.rs b/src/lib.rs index 36ba3c3..3983695 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,7 @@ //! raw-parts is `no_std` compatible with a required dependency on [`alloc`]. #![no_std] -#![doc(html_root_url = "https://docs.rs/raw-parts/2.0.0")] +#![doc(html_root_url = "https://docs.rs/raw-parts/2.1.0")] extern crate alloc;