diff --git a/CHANGELOG.md b/CHANGELOG.md index 855900a..76d40b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.6.3] - 2020-11-10 +### Fixed +- added missing track_caller annotation to autoref specialization functions + ## [0.6.2] - 2020-10-27 ### Fixed - added missing track_caller annotation to new_adhoc function @@ -18,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -[Unreleased]: https://github.com/yaahc/eyre/compare/v0.6.2...HEAD +[Unreleased]: https://github.com/yaahc/eyre/compare/v0.6.3...HEAD +[0.6.3]: https://github.com/yaahc/eyre/compare/v0.6.2...v0.6.3 [0.6.2]: https://github.com/yaahc/eyre/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/yaahc/eyre/releases/tag/v0.6.1 diff --git a/Cargo.toml b/Cargo.toml index 8b97adf..a53d84b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eyre" -version = "0.6.3-alpha.0" +version = "0.6.4-alpha.0" authors = ["David Tolnay ", "Jane Lusby "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 3439f66..15708b5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -283,7 +283,7 @@ //! [`simple-eyre`]: https://github.com/yaahc/simple-eyre //! [`color-spantrace`]: https://github.com/yaahc/color-spantrace //! [`color-backtrace`]: https://github.com/athre0z/color-backtrace -#![doc(html_root_url = "https://docs.rs/eyre/0.6.2")] +#![doc(html_root_url = "https://docs.rs/eyre/0.6.3")] #![warn( missing_debug_implementations, missing_docs,