From 472614b86617f523dc34ff83d8f6cfa39efbbd12 Mon Sep 17 00:00:00 2001 From: Jess Bees Date: Wed, 9 Dec 2020 22:20:54 -0500 Subject: [PATCH] Include README and LICENSE files in crate --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb322d0..20a502a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.8.2 + +* No code changes +* Includes Readme and license files in published crate + # 0.8.1 * Fix a bug in AVX2 path of `labs_to_rgb_bytes` diff --git a/Cargo.toml b/Cargo.toml index 6a810ab..f166381 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lab" -version = "0.8.1" # bump html_root_url attribute in lib.rs +version = "0.8.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 @@ -13,7 +13,7 @@ readme = "README.md" keywords = ["lab", "color", "pixel", "rgb"] categories = ["multimedia::images", "multimedia::video"] license = "MIT" -include = ["src/**/*", "benches/**/*", "Cargo.toml"] +include = ["src/**/*", "benches/**/*", "Cargo.toml", "README.md", "LICENSE"] [lib] bench = false diff --git a/src/lib.rs b/src/lib.rs index fd9179d..0cfa366 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/lab/0.8.1")] +#![doc(html_root_url = "https://docs.rs/lab/0.8.2")] /*!