From c432b60cdafeb0dc3bb4f90f4ecd20cfacf72391 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Thu, 4 Jun 2020 22:22:43 +1000 Subject: [PATCH] prepare for 0.5.2 release (#86) --- Cargo.toml | 4 ++-- README.md | 4 ++-- derive/Cargo.toml | 2 +- derive/src/lib.rs | 2 +- json/Cargo.toml | 4 ++-- json/README.md | 2 +- json/src/lib.rs | 4 ++-- src/lib.rs | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88016c1c..ee9fe1da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] name = "sval" -version = "0.5.1" +version = "0.5.2" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval" @@ -68,7 +68,7 @@ default-features = false package = "serde" [dependencies.sval_derive] -version = "0.5.1" +version = "0.5.2" path = "./derive" optional = true diff --git a/README.md b/README.md index fcec7c7b..a3485764 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Add `sval` to your crate dependencies: ```toml [dependencies.sval] -version = "0.5.1" +version = "0.5.2" ``` ## To support my data-structures @@ -88,7 +88,7 @@ The `sval_json` crate can format any `sval::Value` as JSON: ```toml [dependencies.sval_json] -version = "0.5.1" +version = "0.5.2" features = ["std"] ``` diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 61178b92..724f39e5 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_derive" -version = "0.5.1" +version = "0.5.2" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval_derive" diff --git a/derive/src/lib.rs b/derive/src/lib.rs index e24d266b..9c50ba7a 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.5.1")] +#![doc(html_root_url = "https://docs.rs/sval_derive/0.5.2")] #![recursion_limit = "128"] #[macro_use] diff --git a/json/Cargo.toml b/json/Cargo.toml index 0e286502..aef10254 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sval_json" -version = "0.5.1" +version = "0.5.2" authors = ["Ashley Mannix "] edition = "2018" documentation = "https://docs.rs/sval_json" @@ -22,7 +22,7 @@ travis-ci = { repository = "KodrAus/sval" } std = ["sval/std"] [dependencies.sval] -version = "0.5.1" +version = "0.5.2" path = "../" [dependencies.ryu] diff --git a/json/README.md b/json/README.md index b24e96e9..425e5486 100644 --- a/json/README.md +++ b/json/README.md @@ -25,7 +25,7 @@ Add `sval_json` to your crate dependencies: ```toml [dependencies.sval_json] -version = "0.5.1" +version = "0.5.2" ``` ## To write JSON to a `fmt::Write` diff --git a/json/src/lib.rs b/json/src/lib.rs index fb6afc57..5d9b3f52 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.5.1" +version = "0.5.2" ``` # Writing JSON to `fmt::Write` @@ -79,7 +79,7 @@ let json = sval_json::to_writer(MyWrite, 42)?; ``` */ -#![doc(html_root_url = "https://docs.rs/sval_json/0.5.1")] +#![doc(html_root_url = "https://docs.rs/sval_json/0.5.2")] #![no_std] #[cfg(feature = "std")] diff --git a/src/lib.rs b/src/lib.rs index 41e645c4..0695c57c 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.5.1" +version = "0.5.2" ``` # Supported formats @@ -157,7 +157,7 @@ fn with_value(value: impl sval::Value) { ``` */ -#![doc(html_root_url = "https://docs.rs/sval/0.5.1")] +#![doc(html_root_url = "https://docs.rs/sval/0.5.2")] #![no_std] #[doc(hidden)]