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

Commit f0499f0

Browse files
committed
0.6.0 release
1 parent a78ea75 commit f0499f0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 0.6.0
22

33
- Conditional compilation for error variants.
44
- Backtrace generation is now a feature.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "error-chain"
4-
version = "0.5.0"
4+
version = "0.6.0"
55
authors = [ "Brian Anderson <[email protected]>",
66
"Paul Colomiets <[email protected]>",
77
"Colin Kiegel <[email protected]>"]
@@ -17,4 +17,4 @@ license = "MIT OR Apache-2.0"
1717
default = ["backtrace"]
1818

1919
[dependencies]
20-
backtrace = {version = "0.2.1", optional = true}
20+
backtrace = { version = "0.3", optional = true }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
# error-chain - Consistent error handling for Rust
2+
13
[![Build Status](https://api.travis-ci.org/brson/error-chain.svg?branch=master)](https://travis-ci.org/brson/error-chain)
24
[![Latest Version](https://img.shields.io/crates/v/error-chain.svg)](https://crates.io/crates/error-chain)
35

4-
# error-chain - Consistent error handling for Rust
5-
66
`error-chain` is a crate for dealing with Rust error boilerplate. It
77
provides a few unique features:
88

@@ -21,7 +21,7 @@ provides a few unique features:
2121
Add this to Cargo.toml, under `[dependencies]`:
2222

2323
```toml
24-
error-chain = "0.5"
24+
error-chain = "0.6"
2525
```
2626

2727
Write this at the top of your crate:

0 commit comments

Comments
 (0)