From d2c83e20a3b341946c502380e4230ff4e820ef32 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 10 Aug 2022 16:46:03 -0700 Subject: [PATCH] Release 1.0.61 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 10dd75d..cc55a8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anyhow" -version = "1.0.60" # remember to update html_root_url +version = "1.0.61" # remember to update html_root_url 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 976668a..dfc0110 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -210,7 +210,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.60")] +#![doc(html_root_url = "https://docs.rs/anyhow/1.0.61")] #![cfg_attr(backtrace, feature(backtrace))] #![cfg_attr(doc_cfg, feature(doc_cfg))] #![cfg_attr(not(feature = "std"), no_std)]