diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d09dcc..e5afb8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.7.2 + +* bumped dev dependency `criterion` from 0.2 to 0.3 + +# 0.7.1 + +* bumped dev dependency `pretty_assertions` from 0.5 to 0.6 + # 0.7.0 * add convenience methods for converting slices of labs/rgbs diff --git a/Cargo.toml b/Cargo.toml index c9c0092..13c066b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lab" -version = "0.7.1" # bump html_root_url attribute in lib.rs +version = "0.7.2" # bump html_root_url attribute in lib.rs authors = ["Jesse Bees "] description = """ Tools for converting RGB colors to the CIE-L*a*b* color space, and diff --git a/src/lib.rs b/src/lib.rs index ce31ac9..106f2a6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -37,7 +37,7 @@ //! which both accept exactly 8 elements. See their respective docs for examples //! on where to add Rayon methods. -#![doc(html_root_url = "https://docs.rs/lab/0.7.1")] +#![doc(html_root_url = "https://docs.rs/lab/0.7.2")] #[cfg(test)] #[macro_use]