Skip to content

Commit 7bfd518

Browse files
committed
Release 1.0.218
1 parent 723a949 commit 7bfd518

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

4444

4545
### 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.217")]
98+
#![doc(html_root_url = "https://docs.rs/serde/1.0.218")]
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.217"
3+
version = "1.0.218"
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.217")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.218")]
1717
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
1818
// Ignored clippy lints
1919
#![allow(

0 commit comments

Comments
 (0)