Skip to content

Commit

Permalink
Bump major version to deal with breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
yaahc committed May 7, 2020
1 parent 9154b93 commit 3396e39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "color-eyre"
version = "0.2.3"
version = "0.3.0"
authors = ["Jane Lusby <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add the following to your toml file:
```toml
[dependencies]
eyre = "0.4"
color-eyre = "0.2"
color-eyre = "0.3"
```

And then import the type alias from color-eyre for [`eyre::Report`] or [`eyre::Result`].
Expand All @@ -45,7 +45,7 @@ tracing integration to cut down on unused dependencies:
```toml
[dependencies]
eyre = "0.4"
color-eyre = { version = "0.2", default-features = false }
color-eyre = { version = "0.3", default-features = false }
```

## Example
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! ```toml
//! [dependencies]
//! eyre = "0.4"
//! color-eyre = "0.2"
//! color-eyre = "0.3"
//! ```
//!
//! And then import the type alias from color-eyre for [`eyre::Report`] or [`eyre::Result`].
Expand All @@ -32,7 +32,7 @@
//! ```toml
//! [dependencies]
//! eyre = "0.4"
//! color-eyre = { version = "0.2", default-features = false }
//! color-eyre = { version = "0.3", default-features = false }
//! ```
//!
//! ## Example
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.3")]
#![doc(html_root_url = "https://docs.rs/color-eyre/0.3.0")]
#![warn(
missing_debug_implementations,
missing_docs,
Expand Down

0 comments on commit 3396e39

Please sign in to comment.