From dadf0b6d9c546c814ef8241ffe9136747c63e947 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Tue, 9 Jan 2024 10:54:19 +1000 Subject: [PATCH] prepare for 1.6.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 20fb611..0274b48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag" -version = "1.5.0" +version = "1.6.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.5.0" +version = "1.6.0" path = "meta/sval2" optional = true [dependencies.value-bag-serde1] -version = "1.5.0" +version = "1.6.0" path = "meta/serde1" optional = true diff --git a/README.md b/README.md index 4a23e0f..a96fabf 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.5.0" +version = "1.6.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.5.0" +version = "1.6.0" features = ["sval2"] ``` ```rust [dependencies.value-bag] -version = "1.5.0" +version = "1.6.0" features = ["serde1"] ``` diff --git a/meta/serde1/Cargo.toml b/meta/serde1/Cargo.toml index 299dec6..9a6a02a 100644 --- a/meta/serde1/Cargo.toml +++ b/meta/serde1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag-serde1" -version = "1.5.0" +version = "1.6.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 34690d8..c1141c4 100644 --- a/meta/sval2/Cargo.toml +++ b/meta/sval2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag-sval2" -version = "1.5.0" +version = "1.6.0" edition = "2021" authors = ["Ashley Mannix "] license = "Apache-2.0 OR MIT" diff --git a/src/lib.rs b/src/lib.rs index 89413fe..dca93af 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.5.0")] +#![doc(html_root_url = "https://docs.rs/value-bag/1.6.0")] #![no_std] /*