Skip to content

Commit a866b33

Browse files
committed
Release 1.0.228
1 parent 5adc9e8 commit a866b33

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.227"
3+
version = "1.0.228"
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.227", path = "../serde_core", default-features = false, features = ["result"] }
18+
serde_core = { version = "=1.0.228", 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.227")]
98+
#![doc(html_root_url = "https://docs.rs/serde/1.0.228")]
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.227"
3+
version = "1.0.228"
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 = [
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.227", path = "../serde_derive" }
40+
serde_derive = { version = "=1.0.228", path = "../serde_derive" }
4141

4242

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

0 commit comments

Comments
 (0)