Release 1.0.0

This commit is contained in:
David Tolnay 2019-10-07 07:55:24 -07:00
parent b0c8c75766
commit 3d65a7849c
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 = "anyhow"
version = "1.0.0-alpha.1"
version = "1.0.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -8,11 +8,11 @@ Anyhow&ensp;¯\\\_(ツ)\_/¯
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"
```
<br>

View File

@ -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;