Skip to content

Commit ccf9c6f

Browse files
committed
Release 1.0.152
1 parent b25d0ea commit ccf9c6f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

serde/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde"
3-
version = "1.0.151" # remember to update html_root_url and serde_derive dependency
3+
version = "1.0.152" # remember to update html_root_url and serde_derive dependency
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
build = "build.rs"
66
categories = ["encoding", "no-std"]
@@ -15,7 +15,7 @@ repository = "https://github.com/serde-rs/serde"
1515
rust-version = "1.13"
1616

1717
[dependencies]
18-
serde_derive = { version = "=1.0.151", optional = true, path = "../serde_derive" }
18+
serde_derive = { version = "=1.0.152", optional = true, path = "../serde_derive" }
1919

2020
[dev-dependencies]
2121
serde_derive = { version = "1.0", path = "../serde_derive" }

serde/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
////////////////////////////////////////////////////////////////////////////////
9191

9292
// Serde types in rustdoc of other crates get linked to here.
93-
#![doc(html_root_url = "https://docs.rs/serde/1.0.151")]
93+
#![doc(html_root_url = "https://docs.rs/serde/1.0.152")]
9494
// Support using Serde without the standard library!
9595
#![cfg_attr(not(feature = "std"), no_std)]
9696
// Unstable functionality only if the user asks for it. For tracking and

serde_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_derive"
3-
version = "1.0.151" # remember to update html_root_url
3+
version = "1.0.152" # remember to update html_root_url
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
categories = ["no-std"]
66
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"

serde_derive/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//!
1414
//! [https://serde.rs/derive.html]: https://serde.rs/derive.html
1515
16-
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.151")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.152")]
1717
#![allow(unknown_lints, bare_trait_objects)]
1818
// Ignored clippy lints
1919
#![allow(

serde_test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_test"
3-
version = "1.0.151" # remember to update html_root_url
3+
version = "1.0.152" # remember to update html_root_url
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
build = "build.rs"
66
categories = ["development-tools::testing"]

serde_test/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
//! # }
141141
//! ```
142142
143-
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.151")]
143+
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.152")]
144144
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
145145
// Ignored clippy lints
146146
#![cfg_attr(feature = "cargo-clippy", allow(float_cmp, needless_doctest_main))]

0 commit comments

Comments
 (0)