Skip to content

Commit 1d7899d

Browse files
committed
Release 1.0.225
1 parent 97168d3 commit 1d7899d

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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.224"
3+
version = "1.0.225"
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
build = "build.rs"
66
categories = ["encoding", "no-std", "no-std::no-alloc"]
@@ -15,7 +15,7 @@ repository = "https://github.com/serde-rs/serde"
1515
rust-version = "1.56"
1616

1717
[dependencies]
18-
serde_core = { version = "=1.0.224", path = "../serde_core", default-features = false, features = ["result"] }
18+
serde_core = { version = "=1.0.225", path = "../serde_core", default-features = false, features = ["result"] }
1919
serde_derive = { version = "1", optional = true, path = "../serde_derive" }
2020

2121
[package.metadata.playground]

serde/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.224")]
98+
#![doc(html_root_url = "https://docs.rs/serde/1.0.225")]
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_core/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_core"
3-
version = "1.0.224"
3+
version = "1.0.225"
44
authors = ["Erick Tryzelaar <[email protected]>", "David Tolnay <[email protected]>"]
55
build = "build.rs"
66
categories = ["encoding", "no-std", "no-std::no-alloc"]
@@ -36,7 +36,7 @@ rustdoc-args = [
3636
# is compatible with exactly one serde release because the generated code
3737
# involves nonpublic APIs which are not bound by semver.
3838
[target.'cfg(any())'.dependencies]
39-
serde_derive = { version = "=1.0.224", path = "../serde_derive" }
39+
serde_derive = { version = "=1.0.225", path = "../serde_derive" }
4040

4141

4242
### FEATURES #################################################################

serde_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
////////////////////////////////////////////////////////////////////////////////
3636

3737
// Serde types in rustdoc of other crates get linked to here.
38-
#![doc(html_root_url = "https://docs.rs/serde_core/1.0.224")]
38+
#![doc(html_root_url = "https://docs.rs/serde_core/1.0.225")]
3939
// Support using Serde without the standard library!
4040
#![cfg_attr(not(feature = "std"), no_std)]
4141
// Show which crate feature enables conditionally compiled APIs in documentation.

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.224"
3+
version = "1.0.225"
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

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

0 commit comments

Comments
 (0)