Skip to content

Commit 65e1a50

Browse files
committed
Release 1.0.130
1 parent 87d41b5 commit 65e1a50

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.129" # remember to update html_root_url and serde_derive dependency
3+
version = "1.0.130" # remember to update html_root_url and serde_derive dependency
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
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.129", optional = true, path = "../serde_derive" }
17+
serde_derive = { version = "=1.0.130", 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
@@ -84,7 +84,7 @@
8484
////////////////////////////////////////////////////////////////////////////////
8585

8686
// Serde types in rustdoc of other crates get linked to here.
87-
#![doc(html_root_url = "https://docs.rs/serde/1.0.129")]
87+
#![doc(html_root_url = "https://docs.rs/serde/1.0.130")]
8888
// Support using Serde without the standard library!
8989
#![cfg_attr(not(feature = "std"), no_std)]
9090
// 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.129" # remember to update html_root_url
3+
version = "1.0.130" # remember to update html_root_url
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
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.129")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.130")]
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.129" # remember to update html_root_url
3+
version = "1.0.130" # remember to update html_root_url
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
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.129")]
147+
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.130")]
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)