diff --git a/Cargo.toml b/Cargo.toml index 9c3d18b..3dd8dbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "color-eyre" -version = "0.2.3" +version = "0.3.0" authors = ["Jane Lusby "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 3b029fd..a2ce999 100644 --- a/README.md +++ b/README.md @@ -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`]. @@ -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 diff --git a/src/lib.rs b/src/lib.rs index c46434e..da50417 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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`]. @@ -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 @@ -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,