Skip to content

Commit

Permalink
updated readme and changelog for 0.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
manishobhatia committed Aug 9, 2019
1 parent 2e3793c commit 0346b12
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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).

## 0.4.2 - 2019-08-09
### Added
- Element.Builder.setValue overridden to accept Object Type
### Removed
- Match.childScores is dropped to reduce memory footprint.
### Changed
- ScoringFunction changed to BiFunction from Function. It takes a List<Score> of childScores as the second input.
This allows childScores to be stored in function stack when score is evaluated instead of the heap, and reduces the overall memory footprint of the library

## 0.4.1 - 2019-07-03
### Fixed
- Reduced memory footprint by removing tokens not meeting match threshold
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ The library is pusblished to maven central
<dependency>
<groupId>com.intuit.fuzzymatcher</groupId>
<artifactId>fuzzy-matcher</artifactId>
<version>0.4.1</version>
<version>0.4.2</version>
</dependency>
```

Expand Down

0 comments on commit 0346b12

Please sign in to comment.