From aedaa31087d71c2d07eb82b0041cd9082aa79598 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Thu, 24 Oct 2024 06:56:06 +1000 Subject: [PATCH] prepare for 1.10.0 release --- Cargo.toml | 6 +++--- README.md | 6 +++--- meta/serde1/Cargo.toml | 2 +- meta/sval2/Cargo.toml | 2 +- src/lib.rs | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 71bc19b..c666000 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag" -version = "1.9.0" +version = "1.10.0" authors = ["Ashley Mannix "] edition = "2021" license = "Apache-2.0 OR MIT" @@ -73,12 +73,12 @@ error = [ test = ["std"] [dependencies.value-bag-sval2] -version = "1.9.0" +version = "1.10.0" path = "meta/sval2" optional = true [dependencies.value-bag-serde1] -version = "1.9.0" +version = "1.10.0" path = "meta/serde1" optional = true diff --git a/README.md b/README.md index 016271e..5311ed7 100644 --- a/README.md +++ b/README.md @@ -69,20 +69,20 @@ Add the `value-bag` crate to your `Cargo.toml`: ```rust [dependencies.value-bag] -version = "1.9.0" +version = "1.10.0" ``` You'll probably also want to add a feature for either `sval` (if you're in a no-std environment) or `serde` (if you need to integrate with other code that uses `serde`): ```rust [dependencies.value-bag] -version = "1.9.0" +version = "1.10.0" features = ["sval2"] ``` ```rust [dependencies.value-bag] -version = "1.9.0" +version = "1.10.0" features = ["serde1"] ``` diff --git a/meta/serde1/Cargo.toml b/meta/serde1/Cargo.toml index 6a1c872..0dfc1e3 100644 --- a/meta/serde1/Cargo.toml +++ b/meta/serde1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag-serde1" -version = "1.9.0" +version = "1.10.0" edition = "2021" authors = ["Ashley Mannix "] license = "Apache-2.0 OR MIT" diff --git a/meta/sval2/Cargo.toml b/meta/sval2/Cargo.toml index 485d814..f64108d 100644 --- a/meta/sval2/Cargo.toml +++ b/meta/sval2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag-sval2" -version = "1.9.0" +version = "1.10.0" edition = "2021" authors = ["Ashley Mannix "] license = "Apache-2.0 OR MIT" diff --git a/src/lib.rs b/src/lib.rs index c1657f1..c9e057f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! The producer of a [`ValueBag`] may use a different strategy for capturing than the eventual //! consumer. They don't need to coordinate directly. -#![doc(html_root_url = "https://docs.rs/value-bag/1.9.0")] +#![doc(html_root_url = "https://docs.rs/value-bag/1.10.0")] #![no_std] #![allow( clippy::unnecessary_fallible_conversions,