From 3d65a7849c79b3faf9e731eda553cadcc98985a2 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 7 Oct 2019 07:55:24 -0700 Subject: [PATCH] Release 1.0.0 --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3ab82d2..ab8d9bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anyhow" -version = "1.0.0-alpha.1" +version = "1.0.0" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 4591322..c54128b 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ Anyhow ¯\\\_(ツ)\_/¯ This library provides [`anyhow::Error`][Error], a trait object based error type for easy idiomatic error handling in Rust applications. -[Error]: https://docs.rs/anyhow/1.0.0-alpha.1/anyhow/struct.Error.html +[Error]: https://docs.rs/anyhow/1.0/anyhow/struct.Error.html ```toml [dependencies] -anyhow = "=1.0.0-alpha.1" +anyhow = "1.0" ```
diff --git a/src/lib.rs b/src/lib.rs index ec66f5c..15eaecc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -171,7 +171,7 @@ //! //! [fehler]: https://github.com/withoutboats/fehler -#![doc(html_root_url = "https://docs.rs/anyhow/1.0.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/anyhow/1.0.0")] #![cfg_attr(backtrace, feature(backtrace))] mod context;