From 5cc6ec374936cd7d709f368ca494d621f939dc71 Mon Sep 17 00:00:00 2001 From: Jesse Bees Date: Tue, 5 Mar 2019 20:17:49 -0500 Subject: [PATCH] Bump to version 0.7.0 --- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0e55841..fdfdfa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lab" -version = "0.6.0" # bump html_root_url attribute in lib.rs +version = "0.7.0" # 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 @@ -20,7 +20,7 @@ bench = false [dev-dependencies] rand = "0.5" criterion = { version = "0.2", default-features = false } -lazy_static = "*" +lazy_static = "1.3.0" pretty_assertions = "0.5" [[bench]] diff --git a/src/lib.rs b/src/lib.rs index b113051..3d3ba78 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.6.0")] +#![doc(html_root_url = "https://docs.rs/lab/0.7.0")] #[cfg(test)] #[macro_use]