Skip to content

Commit b539cb4

Browse files
committed
Release 1.0.116
1 parent a5490e2 commit b539cb4

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

serde/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde"
3-
version = "1.0.115" # remember to update html_root_url and serde_derive dependency
3+
version = "1.0.116" # remember to update html_root_url and serde_derive dependency
44
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "A generic serialization/deserialization framework"
@@ -14,7 +14,7 @@ include = ["build.rs", "src/**/*.rs", "crates-io.md", "README.md", "LICENSE-APAC
1414
build = "build.rs"
1515

1616
[dependencies]
17-
serde_derive = { version = "=1.0.115", optional = true, path = "../serde_derive" }
17+
serde_derive = { version = "=1.0.116", optional = true, path = "../serde_derive" }
1818

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

serde/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
////////////////////////////////////////////////////////////////////////////////
8383

8484
// Serde types in rustdoc of other crates get linked to here.
85-
#![doc(html_root_url = "https://docs.rs/serde/1.0.115")]
85+
#![doc(html_root_url = "https://docs.rs/serde/1.0.116")]
8686
// Support using Serde without the standard library!
8787
#![cfg_attr(not(feature = "std"), no_std)]
8888
// Unstable functionality only if the user asks for it. For tracking and

serde_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_derive"
3-
version = "1.0.115" # remember to update html_root_url
3+
version = "1.0.116" # remember to update html_root_url
44
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"

serde_derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.115")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.116")]
1717
#![allow(unknown_lints, bare_trait_objects)]
1818
#![deny(clippy::all, clippy::pedantic)]
1919
// Ignored clippy lints

serde_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_test"
3-
version = "1.0.115" # remember to update html_root_url
3+
version = "1.0.116" # remember to update html_root_url
44
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Token De/Serializer for testing De/Serialize implementations"

serde_test/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
//! # }
145145
//! ```
146146
147-
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.115")]
147+
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.116")]
148148
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
149149
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
150150
// Ignored clippy lints

0 commit comments

Comments
 (0)