Skip to content

Commit 472614b

Browse files
committed
Include README and LICENSE files in crate
1 parent 47919fc commit 472614b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.8.2
2+
3+
* No code changes
4+
* Includes Readme and license files in published crate
5+
16
# 0.8.1
27

38
* Fix a bug in AVX2 path of `labs_to_rgb_bytes`

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lab"
3-
version = "0.8.1" # bump html_root_url attribute in lib.rs
3+
version = "0.8.2" # bump html_root_url attribute in lib.rs
44
authors = ["Jesse Bees <jesse@toomanybees.com>"]
55
description = """
66
Tools for converting RGB colors to the CIE-L*a*b* color space, and
@@ -13,7 +13,7 @@ readme = "README.md"
1313
keywords = ["lab", "color", "pixel", "rgb"]
1414
categories = ["multimedia::images", "multimedia::video"]
1515
license = "MIT"
16-
include = ["src/**/*", "benches/**/*", "Cargo.toml"]
16+
include = ["src/**/*", "benches/**/*", "Cargo.toml", "README.md", "LICENSE"]
1717

1818
[lib]
1919
bench = false

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/lab/0.8.1")]
1+
#![doc(html_root_url = "https://docs.rs/lab/0.8.2")]
22

33
/*!
44

0 commit comments

Comments
 (0)