diff --git a/Cargo.toml b/Cargo.toml index 82ef03d..e39e3ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "1.0.38" +version = "1.0.39" authors = ["David Tolnay "] categories = ["rust-patterns"] description = "derive(Error)" @@ -12,7 +12,7 @@ repository = "https://github.com/dtolnay/thiserror" rust-version = "1.31" [dependencies] -thiserror-impl = { version = "=1.0.38", path = "impl" } +thiserror-impl = { version = "=1.0.39", path = "impl" } [dev-dependencies] anyhow = "1.0.65" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index dee506a..d6dc48e 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "1.0.38" +version = "1.0.39" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 85795df..1ea4574 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -228,7 +228,7 @@ //! //! [`anyhow`]: https://github.com/dtolnay/anyhow -#![doc(html_root_url = "https://docs.rs/thiserror/1.0.38")] +#![doc(html_root_url = "https://docs.rs/thiserror/1.0.39")] #![allow( // Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7421 clippy::doc_markdown,