Skip to content

Commit 930401b

Browse files
committed
Release 1.0.217
1 parent cb6eaea commit 930401b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.216"
3+
version = "1.0.217"
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
build = "build.rs"
66
categories = ["encoding", "no-std", "no-std::no-alloc"]
@@ -37,7 +37,7 @@ rustdoc-args = ["--generate-link-to-definition"]
3737
# is compatible with exactly one serde release because the generated code
3838
# involves nonpublic APIs which are not bound by semver.
3939
[target.'cfg(any())'.dependencies]
40-
serde_derive = { version = "=1.0.216", path = "../serde_derive" }
40+
serde_derive = { version = "=1.0.217", path = "../serde_derive" }
4141

4242

4343
### FEATURES #################################################################

serde/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
////////////////////////////////////////////////////////////////////////////////
9696

9797
// Serde types in rustdoc of other crates get linked to here.
98-
#![doc(html_root_url = "https://docs.rs/serde/1.0.216")]
98+
#![doc(html_root_url = "https://docs.rs/serde/1.0.217")]
9999
// Support using Serde without the standard library!
100100
#![cfg_attr(not(feature = "std"), no_std)]
101101
// Show which crate feature enables conditionally compiled APIs in documentation.

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.216"
3+
version = "1.0.217"
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
categories = ["no-std", "no-std::no-alloc"]
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.216")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.217")]
1717
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
1818
// Ignored clippy lints
1919
#![allow(

0 commit comments

Comments
 (0)