Skip to content

Commit

Permalink
readme and changelog for 1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Manish Bhatia committed Apr 14, 2020
1 parent 21b49e9 commit d2ce6f6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ The library is published to maven central
<dependency>
<groupId>com.intuit.fuzzymatcher</groupId>
<artifactId>fuzzy-matcher</artifactId>
<version>1.0.0</version>
<version>1.0.3</version>
</dependency>
```

Expand Down

0 comments on commit d2ce6f6

Please sign in to comment.