diff --git a/Cargo.toml b/Cargo.toml index 5ae8c599..9b6b2a50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ [package] name = "sval" -version = "0.1.4" +version = "0.1.5" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval" @@ -62,7 +62,7 @@ default-features = false package = "serde" [dependencies.sval_derive] -version = "0.1.4" +version = "0.1.5" path = "./derive" optional = true diff --git a/README.md b/README.md index c5962cc0..6fedeb3c 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Add `sval` to your crate dependencies: ```toml [dependencies.sval] -version = "0.1.4" +version = "0.1.5" ``` ## To support my datastructures @@ -81,7 +81,7 @@ The `sval_json` crate can format any `sval::Value` as json: ```toml [dependencies.sval_json] -version = "0.1.4" +version = "0.1.5" features = ["std"] ``` diff --git a/derive/Cargo.toml b/derive/Cargo.toml index ef9efd69..b5ace14c 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_derive" -version = "0.1.4" +version = "0.1.5" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval_derive" diff --git a/derive/src/lib.rs b/derive/src/lib.rs index c0a5ab53..c862e475 100644 --- a/derive/src/lib.rs +++ b/derive/src/lib.rs @@ -14,7 +14,7 @@ This `derive` implementation has been shamelessly lifted from dtolnay's `miniser https://github.com/dtolnay/miniserde */ -#![doc(html_root_url = "https://docs.rs/sval_derive/0.1.4")] +#![doc(html_root_url = "https://docs.rs/sval_derive/0.1.5")] #![recursion_limit = "128"] #[macro_use] diff --git a/json/Cargo.toml b/json/Cargo.toml index 4269cfea..55d9109c 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_json" -version = "0.1.4" +version = "0.1.5" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval_json" @@ -21,7 +21,7 @@ travis-ci = { repository = "KodrAus/sval" } std = ["sval/std"] [dependencies.sval] -version = "0.1.4" +version = "0.1.5" path = "../" [dependencies.ryu] diff --git a/json/src/lib.rs b/json/src/lib.rs index fab01add..806019cb 100644 --- a/json/src/lib.rs +++ b/json/src/lib.rs @@ -5,7 +5,7 @@ This library is no-std, so it can be run in environments that don't have access to an allocator. */ -#![doc(html_root_url = "https://docs.rs/sval_json/0.1.4")] +#![doc(html_root_url = "https://docs.rs/sval_json/0.1.5")] #![no_std] #[cfg(feature = "std")] diff --git a/src/lib.rs b/src/lib.rs index 695da314..f6ac7d15 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ Add `sval` to your `Cargo.toml`: ```toml,ignore [dependencies.sval] -version = "0.1.4" +version = "0.1.5" ``` # Streaming values @@ -357,7 +357,7 @@ fn with_value(value: impl sval::Value) { ``` */ -#![doc(html_root_url = "https://docs.rs/sval/0.1.4")] +#![doc(html_root_url = "https://docs.rs/sval/0.1.5")] #![no_std] #[macro_use]