Skip to content

Commit

Permalink
bump version to update eyre dep
Browse files Browse the repository at this point in the history
  • Loading branch information
yaahc committed May 7, 2020
1 parent ee694c2 commit 9154b93
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "color-eyre"
version = "0.2.2"
version = "0.2.3"
authors = ["Jane Lusby <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ capture-spantrace = ["tracing-error", "color-spantrace"]
default = ["capture-spantrace"]

[dependencies]
eyre = "0.3.8"
eyre = "0.4"
tracing-error = { version = "0.1.2", optional = true }
color-backtrace = "0.4.0"
backtrace = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following to your toml file:

```toml
[dependencies]
eyre = "0.3.8"
eyre = "0.4"
color-eyre = "0.2"
```

Expand All @@ -44,7 +44,7 @@ tracing integration to cut down on unused dependencies:

```toml
[dependencies]
eyre = "0.3.8"
eyre = "0.4"
color-eyre = { version = "0.2", default-features = false }
```

Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! ```toml
//! [dependencies]
//! eyre = "0.3.8"
//! eyre = "0.4"
//! color-eyre = "0.2"
//! ```
//!
Expand All @@ -31,7 +31,7 @@
//!
//! ```toml
//! [dependencies]
//! eyre = "0.3.8"
//! eyre = "0.4"
//! color-eyre = { version = "0.2", default-features = false }
//! ```
//!
Expand Down Expand Up @@ -119,7 +119,7 @@
//! [`Help`]: trait.Help.html
//! [`eyre::Report`]: https://docs.rs/eyre/0.3.8/eyre/struct.Report.html
//! [`eyre::Result`]: https://docs.rs/eyre/0.3.8/eyre/type.Result.html
#![doc(html_root_url = "https://docs.rs/color-eyre/0.2.2")]
#![doc(html_root_url = "https://docs.rs/color-eyre/0.2.3")]
#![warn(
missing_debug_implementations,
missing_docs,
Expand Down

0 comments on commit 9154b93

Please sign in to comment.