diff --git a/Cargo.toml b/Cargo.toml
index 6964a8ec619bd8cb4f9fa6b68d2db0e170118ca5..3ecee13ac235e1fe31cb43624d423931e76a8819 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,15 +1,15 @@
 [package]
 name = "lcms2"
 authors = ["Kornel Lesiński <kornel@geekhood.net>"]
+description = "ICC color profile handling. Rusty wrapper for Little CMS"
 keywords = ["icc", "profile", "color", "lcms"]
 include = ["src/**/*", "tests/**/*", "examples/**/*", "Cargo.toml", "README.md"]
-description = "ICC color profile handling. Rusty wrapper Little CMS"
 readme = "README.md"
 license = "MIT"
 documentation = "https://pornel.github.io/rust-lcms2/lcms2/"
 repository = "https://github.com/pornel/rust-lcms2.git"
 categories = ["multimedia::images", "api-bindings"]
-version = "4.2.0"
+version = "4.2.1"
 
 [dependencies]
 foreign-types = "0.3.0"
diff --git a/README.md b/README.md
index 7595f136c9fd3d74f2bbdc20ebd247d60fb2f9fa..8882748303d6763e29a2a72447239987fca96542 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-# [Little CMS](http://www.littlecms.com) wrapper for [Rust](http://www.rust-lang.org/)
+# [Little CMS](http://www.littlecms.com) wrapper for [Rust](https://www.rust-lang.org/)
 
 Convert and apply color profiles with a safe abstraction layer for the LCMS library.
 
-See [API reference](https://docs.rs/lcms2/) for Rust functions and the [LCMS2 documentation HTML](https://pornel.github.io/rust-lcms2-sys/)/[PDF](http://www.littlecms.com/LittleCMS2.7%20API.pdf) for more background information about the functions.
+See [API reference](https://docs.rs/lcms2/) for Rust functions and the [LCMS2 documentation HTML](https://pornel.github.io/rust-lcms2-sys/)/[PDF](http://www.littlecms.com/LittleCMS2.8%20API.pdf) for more background information about the functions.
 
 ```rust
 extern crate rgb;
@@ -42,4 +42,4 @@ if b"ICC_PROFILE\0" == &app2_marker_data[0..12] {
 
 There's more in the `examples` directory.
 
-This crate requires Rust 1.18 or later. It's up to date with LCMS 2.8 (should work with 2.6+).
+This crate requires Rust 1.18 or later. It's up to date with LCMS 2.8 (should work with 2.6 to 2.9).