diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ced72f..eef45a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate + +## [0.2.2] - 2021-02-02 ### Fixed - Resolved lifetime issue introduced by new `impl Error for &E: Error` change on nightly +[Unreleased]: https://github.com/yaahc/stable-eyre/compare/v0.2.2...HEAD [0.2.2]: https://github.com/yaahc/stable-eyre/releases/tag/v0.2.2 diff --git a/Cargo.toml b/Cargo.toml index f57a83e..786954c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stable-eyre" -version = "0.2.1" +version = "0.2.2" authors = ["Jane Lusby "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index e7609e9..313dbdd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,7 +30,7 @@ //! [`eyre::EyreHandler`]: https://docs.rs/eyre/*/eyre/trait.EyreHandler.html //! [`eyre`]: https://docs.rs/eyre //! [`backtrace::Backtrace`]: https://docs.rs/backtrace/*/backtrace/struct.Backtrace.html -#![doc(html_root_url = "https://docs.rs/stable-eyre/0.2.1")] +#![doc(html_root_url = "https://docs.rs/stable-eyre/0.2.2")] #![warn( missing_debug_implementations, missing_docs,