From 08debb00b13df5ba264987f0241d3c2624b7c4e1 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Sat, 11 Dec 2021 21:32:37 -0800 Subject: [PATCH] Bump version to v1.1.0 --- 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 e2a6fb4..5a42361 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raw-parts" -version = "1.0.2" +version = "1.1.0" authors = ["Ryan Lopopolo "] edition = "2021" rust-version = "1.56.0" diff --git a/README.md b/README.md index e28fad3..7644304 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -raw-parts = "1.0" +raw-parts = "1.1" ``` Then decompose `Vec`s like: diff --git a/src/lib.rs b/src/lib.rs index eb098ea..fd05783 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/1.0.2")] +#![doc(html_root_url = "https://docs.rs/raw-parts/1.1.0")] // Ensure code blocks in `README.md` compile #[cfg(doctest)]