Skip to content

Commit

Permalink
Release 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Apr 15, 2024
1 parent 58b4704 commit 7d82dc9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monostate"
version = "0.1.11"
version = "0.1.12"
authors = ["David Tolnay <[email protected]>"]
categories = ["encoding", "rust-patterns", "no-std", "no-std::no-alloc"]
description = "Type that deserializes only from one specific value"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/dtolnay/monostate"
rust-version = "1.60"

[dependencies]
monostate-impl = { version = "=0.1.11", path = "impl" }
monostate-impl = { version = "=0.1.12", path = "impl" }
serde = { version = "1.0.166", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monostate-impl"
version = "0.1.11"
version = "0.1.12"
authors = ["David Tolnay <[email protected]>"]
description = "Implementation detail of the monostate crate"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
//! ```

#![no_std]
#![doc(html_root_url = "https://docs.rs/monostate/0.1.11")]
#![doc(html_root_url = "https://docs.rs/monostate/0.1.12")]
#![allow(non_camel_case_types, non_upper_case_globals)]
#![allow(
clippy::borrow_as_ptr,
Expand Down

0 comments on commit 7d82dc9

Please sign in to comment.