diff --git a/serde/Cargo.toml b/serde/Cargo.toml index db29c60e..1d26f0a7 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde" -version = "1.0.34" # remember to update html_root_url +version = "1.0.35" # remember to update html_root_url authors = ["Erick Tryzelaar ", "David Tolnay "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework" diff --git a/serde/src/lib.rs b/serde/src/lib.rs index df49ff72..0630cad0 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -79,7 +79,7 @@ //////////////////////////////////////////////////////////////////////////////// // Serde types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/serde/1.0.34")] +#![doc(html_root_url = "https://docs.rs/serde/1.0.35")] // Support using Serde without the standard library! #![cfg_attr(not(feature = "std"), no_std)] // Unstable functionality only if the user asks for it. For tracking and diff --git a/serde_derive/Cargo.toml b/serde_derive/Cargo.toml index 653792f5..3899ff58 100644 --- a/serde_derive/Cargo.toml +++ b/serde_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_derive" -version = "1.0.34" # remember to update html_root_url +version = "1.0.35" # remember to update html_root_url authors = ["Erick Tryzelaar ", "David Tolnay "] license = "MIT/Apache-2.0" description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]" @@ -25,7 +25,7 @@ proc-macro = true [dependencies] proc-macro2 = "0.2" quote = "0.4" -serde_derive_internals = { version = "=0.22.0", default-features = false, path = "../serde_derive_internals" } +serde_derive_internals = { version = "=0.22.1", default-features = false, path = "../serde_derive_internals" } syn = { version = "0.12", features = ["visit"] } [dev-dependencies] diff --git a/serde_derive/src/lib.rs b/serde_derive/src/lib.rs index b4b2591b..49d3bafd 100644 --- a/serde_derive/src/lib.rs +++ b/serde_derive/src/lib.rs @@ -22,7 +22,7 @@ //! //! [https://serde.rs/derive.html]: https://serde.rs/derive.html -#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.34")] +#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.35")] #![cfg_attr(feature = "cargo-clippy", allow(enum_variant_names, redundant_field_names, too_many_arguments, used_underscore_binding))] // The `quote!` macro requires deep recursion. diff --git a/serde_derive_internals/Cargo.toml b/serde_derive_internals/Cargo.toml index 29f9ab37..100dd6df 100644 --- a/serde_derive_internals/Cargo.toml +++ b/serde_derive_internals/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_derive_internals" -version = "0.22.0" # remember to update html_root_url +version = "0.22.1" # remember to update html_root_url authors = ["Erick Tryzelaar ", "David Tolnay "] license = "MIT/Apache-2.0" description = "AST representation used by Serde derive macros. Unstable." diff --git a/serde_derive_internals/src/lib.rs b/serde_derive_internals/src/lib.rs index 5299ac06..d78fa564 100644 --- a/serde_derive_internals/src/lib.rs +++ b/serde_derive_internals/src/lib.rs @@ -6,7 +6,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.22.0")] +#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.22.1")] #![cfg_attr(feature = "cargo-clippy", allow(cyclomatic_complexity, doc_markdown, match_same_arms, redundant_field_names))] diff --git a/serde_test/Cargo.toml b/serde_test/Cargo.toml index c8811aa2..3e2cf16d 100644 --- a/serde_test/Cargo.toml +++ b/serde_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_test" -version = "1.0.34" # remember to update html_root_url +version = "1.0.35" # remember to update html_root_url authors = ["Erick Tryzelaar ", "David Tolnay "] license = "MIT/Apache-2.0" description = "Token De/Serializer for testing De/Serialize implementations" diff --git a/serde_test/src/lib.rs b/serde_test/src/lib.rs index ff47f73f..0b6ddb48 100644 --- a/serde_test/src/lib.rs +++ b/serde_test/src/lib.rs @@ -155,7 +155,7 @@ //! # } //! ``` -#![doc(html_root_url = "https://docs.rs/serde_test/1.0.34")] +#![doc(html_root_url = "https://docs.rs/serde_test/1.0.35")] #![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))] // Whitelisted clippy lints #![cfg_attr(feature = "cargo-clippy", allow(float_cmp))]