From d2ce6f6f53a2ea5b1d628bd2fb0aec5d1d22bc5a Mon Sep 17 00:00:00 2001 From: Manish Bhatia Date: Tue, 14 Apr 2020 12:57:29 -0700 Subject: [PATCH] readme and changelog for 1.0.3 release --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c152d1..5024ecf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.0.3 - 2020-04-14 +### Added +- MatchService.applyMatchByGroups new service method to return groups of Matches. +Eg. A matches with B and B with C, all of them appear in the same group (set of matches) + +### Changed +- Token class now supports Generics for value instead of Object +- TokenizerFunction and PreProcessing Functions are no longer functional interface, but instead a Java Class with static methods that return standard java functions. +- ElementType does not take parameters in constructors and is now a simple enumeration. This is to allow easier JNBridge proxies for .net support + +### Fixed +- NEAREST_NEIGHBOR match issue with negative numbers and dates (before epoch) https://github.com/intuit/fuzzy-matcher/issues/28 +- NEAREST_NEIGHBOR match not returning multiple matches if the matching value is exactly same. + ## 1.0.0 - 2020-03-25 ### Added - In Element ability to set MatchType (this replaces similarityMatchFunction) diff --git a/README.md b/README.md index 63988ff..f15d4a5 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ The library is published to maven central com.intuit.fuzzymatcher fuzzy-matcher - 1.0.0 + 1.0.3 ```