Release 2.0.12

This commit is contained in:
David Tolnay 2025-03-02 20:24:05 -08:00
parent 76490f743e
commit 95a5126693
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 = "2.0.11"
version = "2.0.12"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns"]
description = "derive(Error)"
@ -28,7 +28,7 @@ default = ["std"]
std = []
[dependencies]
thiserror-impl = { version = "=2.0.11", path = "impl" }
thiserror-impl = { version = "=2.0.12", path = "impl" }
[dev-dependencies]
anyhow = "1.0.73"

View file

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

View file

@ -257,7 +257,7 @@
//! [`anyhow`]: https://github.com/dtolnay/anyhow
#![no_std]
#![doc(html_root_url = "https://docs.rs/thiserror/2.0.11")]
#![doc(html_root_url = "https://docs.rs/thiserror/2.0.12")]
#![allow(
clippy::elidable_lifetime_names,
clippy::module_name_repetitions,