From d532af4d0cefe8425a1327105bda33f54b99fb99 Mon Sep 17 00:00:00 2001
From: Kornel <kornel@geekhood.net>
Date: Tue, 12 Sep 2017 01:58:47 +0100
Subject: [PATCH] 4.2.1

---
 Cargo.toml | 4 ++--
 README.md  | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 6964a8e..3ecee13 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 7595f13..8882748 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).
-- 
GitLab