Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 10, 2016
1 parent f45af42 commit 66e2972
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "log-panics"
version = "1.0.0"
version = "1.1.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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://sfackler.github.io/rust-log-panics/doc/v1.0.0/log_panics"
documentation = "https://docs.rs/log-panics/1.1.0/log_panics"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/sfackler/rust-log-panics.svg?branch=master)](https://travis-ci.org/sfackler/rust-log-panics)

[Documentation](https://sfackler.github.io/rust-log-panics/doc/v1.0.0/log_panics)
[Documentation](https://docs.rs/log-panics/1.1.0/log_panics)

A panic hook which logs panics rather than printing them.

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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://sfackler.github.io/rust-log-panics/doc/v1.0.0")]
#![doc(html_root_url="https://docs.rs/log-panics/1.1.0")]
#![warn(missing_docs)]

#[macro_use]
Expand Down

0 comments on commit 66e2972

Please sign in to comment.