From 52667624e8eace993f081bd69f77a43ea9a9f96a Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 11 Sep 2020 14:13:47 -0700 Subject: [PATCH] serde: prepare to release 0.1.2 (#973) ### Added - `SerdeMapVisitor::finish` to complete serializing the visited objects (#892) - `SerdeMapVisitor::take_serializer` to return the serializer wrapped by a `SerdeMapVisitor` (#892) Thanks to @bryanburgers for contributing to this release! --- tracing-serde/Cargo.toml | 2 +- tracing-serde/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tracing-serde/Cargo.toml b/tracing-serde/Cargo.toml index 1dbcad89..8e7d2150 100644 --- a/tracing-serde/Cargo.toml +++ b/tracing-serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-serde" -version = "0.1.1" +version = "0.1.2" authors = ["Tokio Contributors "] license = "MIT" edition = "2018" diff --git a/tracing-serde/src/lib.rs b/tracing-serde/src/lib.rs index a12d222d..9307aa74 100644 --- a/tracing-serde/src/lib.rs +++ b/tracing-serde/src/lib.rs @@ -125,7 +125,7 @@ //! //! [`tracing`]: https://crates.io/crates/tracing //! [`serde`]: https://crates.io/crates/serde -#![doc(html_root_url = "https://docs.rs/tracing-serde/0.1.1")] +#![doc(html_root_url = "https://docs.rs/tracing-serde/0.1.2")] #![doc( html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png", issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"