diff --git a/Cargo.toml b/Cargo.toml index 7e6636d..ba1576d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "log-panics" -version = "1.1.0" +version = "1.2.0" authors = ["Steven Fackler "] license = "MIT/Apache-2.0" description = "A panic hook which logs panic messages rather than printing them" repository = "https://github.com/sfackler/rust-log-panics" -documentation = "https://docs.rs/log-panics/1.1.0/log_panics" +documentation = "https://docs.rs/log-panics/1.2.0/log_panics" readme = "README.md" [features] diff --git a/src/lib.rs b/src/lib.rs index 5c2e976..b750861 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ //! The format used is identical to the standard library's. If the //! `with-backtrace` Cargo feature is enabled, a backtrace will be printed along //! with the panic message. -#![doc(html_root_url="https://docs.rs/log-panics/1.1.0")] +#![doc(html_root_url="https://docs.rs/log-panics/1.2.0")] #![warn(missing_docs)] #[macro_use]