From 074bdea1c7b419e4f1267ebb9eac4d6068870122 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 9 Apr 2024 19:25:22 -0700 Subject: [PATCH] Release 1.0.82 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index edb3e68..d92a396 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anyhow" -version = "1.0.81" +version = "1.0.82" authors = ["David Tolnay "] categories = ["rust-patterns", "no-std"] description = "Flexible concrete Error type built on std::error::Error" diff --git a/src/lib.rs b/src/lib.rs index c38a43f..79cfdb6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -206,7 +206,7 @@ //! will require an explicit `.map_err(Error::msg)` when working with a //! non-Anyhow error type inside a function that returns Anyhow's error type. -#![doc(html_root_url = "https://docs.rs/anyhow/1.0.81")] +#![doc(html_root_url = "https://docs.rs/anyhow/1.0.82")] #![cfg_attr(error_generic_member_access, feature(error_generic_member_access))] #![cfg_attr(doc_cfg, feature(doc_cfg))] #![no_std]