diff --git a/Cargo.toml b/Cargo.toml index 9b6b2a50..c9bc4a3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ [package] name = "sval" -version = "0.1.5" +version = "0.2.0" 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.5" +version = "0.2.0" path = "./derive" optional = true diff --git a/README.md b/README.md index 1801d279..0802bd08 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Add `sval` to your crate dependencies: ```toml [dependencies.sval] -version = "0.1.5" +version = "0.2.0" ``` ## To support my datastructures @@ -82,7 +82,7 @@ The `sval_json` crate can format any `sval::Value` as json: ```toml [dependencies.sval_json] -version = "0.1.5" +version = "0.2.0" features = ["std"] ``` diff --git a/derive/Cargo.toml b/derive/Cargo.toml index b5ace14c..8c5a2152 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_derive" -version = "0.1.5" +version = "0.2.0" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval_derive" diff --git a/derive/src/lib.rs b/derive/src/lib.rs index c862e475..6318fc02 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.5")] +#![doc(html_root_url = "https://docs.rs/sval_derive/0.2.0")] #![recursion_limit = "128"] #[macro_use] diff --git a/json/Cargo.toml b/json/Cargo.toml index 55d9109c..bb9874f4 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_json" -version = "0.1.5" +version = "0.2.0" 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.5" +version = "0.2.0" path = "../" [dependencies.ryu] diff --git a/json/src/lib.rs b/json/src/lib.rs index 602c8408..4220c713 100644 --- a/json/src/lib.rs +++ b/json/src/lib.rs @@ -10,7 +10,7 @@ Add `sval_json` to your `Cargo.toml`: ```toml,ignore [dependencies.sval_json] -version = "0.1.5" +version = "0.2.0" ``` # Writing JSON to `fmt::Write` @@ -72,7 +72,7 @@ let json = sval_json::to_writer(MyWrite, 42)?; ``` */ -#![doc(html_root_url = "https://docs.rs/sval_json/0.1.5")] +#![doc(html_root_url = "https://docs.rs/sval_json/0.2.0")] #![no_std] #[cfg(feature = "std")] diff --git a/src/lib.rs b/src/lib.rs index 6f34223b..e202306b 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.5" +version = "0.2.0" ``` # Streaming values @@ -428,7 +428,7 @@ fn with_value(value: impl sval::Value) { ``` */ -#![doc(html_root_url = "https://docs.rs/sval/0.1.5")] +#![doc(html_root_url = "https://docs.rs/sval/0.2.0")] #![no_std] #[macro_use]