Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit c9b3757

Browse files
committed
0.11.0
1 parent 181a6d7 commit c9b3757

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# Unreleased
22

3+
# 0.11.0
4+
35
- Change last rust version supported to 1.14
46
- [Cache whether RUST_BACKTRACE is enabled in a relaxed atomic static.](https://github.com/rust-lang-nursery/error-chain/pull/210)
57
- [Mask the `quick_error` macro from the doc](https://github.com/rust-lang-nursery/error-chain/pull/210)
68
- [Make generated `ErrorKind` enums non-exhaustive](https://github.com/rust-lang-nursery/error-chain/pull/193)
9+
- All 0.11.0-rc.2 changes
710

811
# 0.11.0-rc.2
912

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "error-chain"
3-
version = "0.11.0-rc.2" # remember to update html_root_url
3+
version = "0.11.0" # remember to update html_root_url
44
authors = [ "Brian Anderson <[email protected]>",
55
"Paul Colomiets <[email protected]>",
66
"Colin Kiegel <[email protected]>",

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![deny(missing_docs)]
22
#![allow(unknown_lints)] // to be removed when unused_doc_comments lints is merged
3-
#![doc(html_root_url = "https://docs.rs/error-chain/0.11.0-rc.2")]
3+
#![doc(html_root_url = "https://docs.rs/error-chain/0.11.0")]
44

55
//! A library for consistent and reliable error handling
66
//!

0 commit comments

Comments
 (0)