Skip to content

Commit

Permalink
Include README and LICENSE files in crate
Browse files Browse the repository at this point in the history
  • Loading branch information
TooManyBees committed Dec 10, 2020
1 parent 47919fc commit 472614b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <jesse@toomanybees.com>"]
description = """
Tools for converting RGB colors to the CIE-L*a*b* color space, and
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -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")]

/*!
Expand Down

0 comments on commit 472614b

Please sign in to comment.