Skip to content

Commit

Permalink
Release 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 3, 2023
1 parent ae0b163 commit fd21fd8
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.6"
version = "0.1.7"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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.56"

[dependencies]
monostate-impl = { version = "=0.1.6", path = "impl" }
monostate-impl = { version = "=0.1.7", path = "impl" }
serde = { version = "1.0", 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.6"
version = "0.1.7"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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.6")]
#![doc(html_root_url = "https://docs.rs/monostate/0.1.7")]
#![allow(non_camel_case_types, non_upper_case_globals)]
#![allow(
clippy::borrow_as_ptr,
Expand Down

0 comments on commit fd21fd8

Please sign in to comment.