Release 1.0.39

This commit is contained in:
David Tolnay 2023-03-05 15:53:12 -08:00
parent 391ec2bc1b
commit f729af95d1
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "thiserror"
version = "1.0.38"
version = "1.0.39"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns"]
description = "derive(Error)"
@ -12,7 +12,7 @@ repository = "https://github.com/dtolnay/thiserror"
rust-version = "1.31"
[dependencies]
thiserror-impl = { version = "=1.0.38", path = "impl" }
thiserror-impl = { version = "=1.0.39", path = "impl" }
[dev-dependencies]
anyhow = "1.0.65"

View File

@ -1,6 +1,6 @@
[package]
name = "thiserror-impl"
version = "1.0.38"
version = "1.0.39"
authors = ["David Tolnay <dtolnay@gmail.com>"]
description = "Implementation detail of the `thiserror` crate"
edition = "2018"

View File

@ -228,7 +228,7 @@
//!
//! [`anyhow`]: https://github.com/dtolnay/anyhow
#![doc(html_root_url = "https://docs.rs/thiserror/1.0.38")]
#![doc(html_root_url = "https://docs.rs/thiserror/1.0.39")]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7421
clippy::doc_markdown,