diff --git a/Cargo.toml b/Cargo.toml index 6d9e540..20fb611 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag" -version = "1.4.3" +version = "1.5.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.4.3" +version = "1.5.0" path = "meta/sval2" optional = true [dependencies.value-bag-serde1] -version = "1.4.3" +version = "1.5.0" path = "meta/serde1" optional = true diff --git a/README.md b/README.md index a5311d4..4a23e0f 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.4.3" +version = "1.5.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.4.3" +version = "1.5.0" features = ["sval2"] ``` ```rust [dependencies.value-bag] -version = "1.4.3" +version = "1.5.0" features = ["serde1"] ``` diff --git a/meta/serde1/Cargo.toml b/meta/serde1/Cargo.toml index dc94655..299dec6 100644 --- a/meta/serde1/Cargo.toml +++ b/meta/serde1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag-serde1" -version = "1.4.3" +version = "1.5.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 27bda2a..34690d8 100644 --- a/meta/sval2/Cargo.toml +++ b/meta/sval2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "value-bag-sval2" -version = "1.4.3" +version = "1.5.0" edition = "2021" authors = ["Ashley Mannix "] license = "Apache-2.0 OR MIT" diff --git a/src/lib.rs b/src/lib.rs index 00456dd..3889b23 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.4.3")] +#![doc(html_root_url = "https://docs.rs/value-bag/1.5.0")] #![no_std] /*