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

Commit

Permalink
0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamakaky committed Nov 20, 2016
1 parent a78ea75 commit f0499f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 0.6.0

- Conditional compilation for error variants.
- Backtrace generation is now a feature.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

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

[dependencies]
backtrace = {version = "0.2.1", optional = true}
backtrace = { version = "0.3", optional = true }
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# error-chain - Consistent error handling for Rust

[![Build Status](https://api.travis-ci.org/brson/error-chain.svg?branch=master)](https://travis-ci.org/brson/error-chain)
[![Latest Version](https://img.shields.io/crates/v/error-chain.svg)](https://crates.io/crates/error-chain)

# error-chain - Consistent error handling for Rust

`error-chain` is a crate for dealing with Rust error boilerplate. It
provides a few unique features:

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

```toml
error-chain = "0.5"
error-chain = "0.6"
```

Write this at the top of your crate:
Expand Down

0 comments on commit f0499f0

Please sign in to comment.