Skip to content

Commit c4fb923

Browse files
committedApr 16, 2024··
Release 1.0.198
1 parent 65b7eea commit c4fb923

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.197"
3+
version = "1.0.198"
44
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
55
build = "build.rs"
66
categories = ["encoding", "no-std", "no-std::no-alloc"]
@@ -37,7 +37,7 @@ rustdoc-args = ["--cfg", "doc_cfg", "--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.197", path = "../serde_derive" }
40+
serde_derive = { version = "=1.0.198", 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.197")]
98+
#![doc(html_root_url = "https://docs.rs/serde/1.0.198")]
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.197"
3+
version = "1.0.198"
44
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
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.197")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.198")]
1717
// Ignored clippy lints
1818
#![allow(
1919
// clippy false positive: https://github.com/rust-lang/rust-clippy/issues/7054

0 commit comments

Comments
 (0)
Please sign in to comment.