From 8a932d62107491f8d1b483c4b8b2565470c85393 Mon Sep 17 00:00:00 2001 From: romankh3 Date: Wed, 29 Jan 2020 07:02:58 +0200 Subject: [PATCH] 4.1.0: #167: added option to fill rectangles --- README.md | 4 ++-- RELEASE_NOTES.md | 3 +++ build.gradle | 2 +- pom.xml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4c521e6..889079a 100644 --- a/README.md +++ b/README.md @@ -67,12 +67,12 @@ Can be found in [RELEASE_NOTES](RELEASE_NOTES.md). com.github.romankh3 image-comparison - 4.0.1 + 4.1.0 ``` #### Gradle ```groovy -compile 'com.github.romankh3:image-comparison:4.0.1' +compile 'com.github.romankh3:image-comparison:4.1.0' ``` #### To compare two images programmatically diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 289fb0d..2545d6e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,8 @@ # Release Notes +## 4.1.0 +* added option to fill rectangles(167 issue) + ## 4.0.0 * refactored drawRectangles method due to SRP. * optimized isDifferentPixels to improve algorithm. diff --git a/build.gradle b/build.gradle index d18e6b0..4690d31 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { } group 'com.github.romankh3' -version '4.1.0-SNAPSHOT' +version '4.1.0' description 'A library and utility to compare different images.' sourceCompatibility = 1.8 diff --git a/pom.xml b/pom.xml index 2441994..3aaf436 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.github.romankh3 image-comparison - 4.1.0-SNAPSHOT + 4.1.0 jar Image Comparison