diff --git a/CHANGELOG.md b/CHANGELOG.md index f98f08710..8606fec8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# 0.6.0 - Conditional compilation for error variants. - Backtrace generation is now a feature. diff --git a/Cargo.toml b/Cargo.toml index 72096ee49..4c735c604 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "error-chain" -version = "0.5.0" +version = "0.6.0" authors = [ "Brian Anderson ", "Paul Colomiets ", "Colin Kiegel "] @@ -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 } diff --git a/README.md b/README.md index 5ae6965b9..d55c5c0fc 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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: