Skip to content

Commit d2ce6f6

Browse files
author
Manish Bhatia
committed
readme and changelog for 1.0.3 release
1 parent 21b49e9 commit d2ce6f6

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.0.3 - 2020-04-14
8+
### Added
9+
- MatchService.applyMatchByGroups new service method to return groups of Matches.
10+
Eg. A matches with B and B with C, all of them appear in the same group (set of matches)
11+
12+
### Changed
13+
- Token class now supports Generics for value instead of Object
14+
- TokenizerFunction and PreProcessing Functions are no longer functional interface, but instead a Java Class with static methods that return standard java functions.
15+
- ElementType does not take parameters in constructors and is now a simple enumeration. This is to allow easier JNBridge proxies for .net support
16+
17+
### Fixed
18+
- NEAREST_NEIGHBOR match issue with negative numbers and dates (before epoch) https://github.com/intuit/fuzzy-matcher/issues/28
19+
- NEAREST_NEIGHBOR match not returning multiple matches if the matching value is exactly same.
20+
721
## 1.0.0 - 2020-03-25
822
### Added
923
- In Element ability to set MatchType (this replaces similarityMatchFunction)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ The library is published to maven central
206206
<dependency>
207207
<groupId>com.intuit.fuzzymatcher</groupId>
208208
<artifactId>fuzzy-matcher</artifactId>
209-
<version>1.0.0</version>
209+
<version>1.0.3</version>
210210
</dependency>
211211
```
212212

0 commit comments

Comments
 (0)