Skip to content

Commit 57dc0ee

Browse files
committed
Release 1.0.181
1 parent 5e102c4 commit 57dc0ee

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

precompiled/bin/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.180"
3+
version = "1.0.181"
44
authors = ["David Tolnay <[email protected]>"]
55
publish = false
66

precompiled/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.180"
3+
version = "1.0.181"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["no-std", "no-std::no-alloc"]
66
description = "Implementation of #[derive(Serialize, Deserialize)]"

precompiled/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.180")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.181")]
1717

1818
#[cfg(not(all(target_arch = "x86_64", target_os = "linux", target_env = "gnu")))]
1919
include!("lib_from_source.rs");

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.180" # remember to update html_root_url and serde_derive dependency
3+
version = "1.0.181" # remember to update html_root_url and serde_derive dependency
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.31"
1616

1717
[dependencies]
18-
serde_derive = { version = "=1.0.180", optional = true, path = "../serde_derive" }
18+
serde_derive = { version = "=1.0.181", optional = true, path = "../serde_derive" }
1919

2020
[dev-dependencies]
2121
serde_derive = { version = "1", path = "../serde_derive" }

serde/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
////////////////////////////////////////////////////////////////////////////////
9494

9595
// Serde types in rustdoc of other crates get linked to here.
96-
#![doc(html_root_url = "https://docs.rs/serde/1.0.180")]
96+
#![doc(html_root_url = "https://docs.rs/serde/1.0.181")]
9797
// Support using Serde without the standard library!
9898
#![cfg_attr(not(feature = "std"), no_std)]
9999
// Unstable functionality only if the user asks for it. For tracking and

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.180" # remember to update html_root_url
3+
version = "1.0.181" # remember to update html_root_url
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.180")]
16+
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.181")]
1717
// Ignored clippy lints
1818
#![allow(
1919
// clippy false positive: https://github.com/rust-lang/rust-clippy/issues/7054

0 commit comments

Comments
 (0)