From 463f11650ac779832f462993cbc48cb8493ace97 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 24 Dec 2017 20:22:41 -0700 Subject: [PATCH] Release 2.0.0 --- Cargo.toml | 3 +-- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3bc7c20..ea9fc5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,10 @@ [package] name = "log-panics" -version = "1.2.0" +version = "2.0.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.2.0/log_panics" readme = "README.md" [features] diff --git a/src/lib.rs b/src/lib.rs index 56f8cb7..6443585 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.2.0")] +#![doc(html_root_url = "https://docs.rs/log-panics/2.0.0")] #![warn(missing_docs)] #[macro_use]