Skip to content

Commit ba09145

Browse files
author
mbhatia
committed
1.2.0 version release updates
1 parent 79e1be1 commit ba09145

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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.2.0 - 2021-10-18
8+
### Added
9+
- Support for Java 11
10+
- Significant improvement in memory footprint
11+
712
## 1.1.0 - 2021-10-18
813
### Added
914
- Support for chaining multiple Tokenizers using `chainTokenizers` function

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Readme.md file gives a good overview of the architecture. Make sure to review th
88

99
## Building the Library
1010
### Prerequisite
11-
You need Java SDK v1.8 or higher. Before you begin, you should check your current Java installation by using the following command:
11+
You need Java JDK 11 or higher. Before you begin, you should check your current Java installation by using the following command:
1212
``` java -version ```
1313

1414
fuzzy-match is compatible with Apache Maven 4.0 or above. If you do not already have Maven installed, you can follow the instructions at maven.apache.org.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,10 @@ The library is published to maven central
207207
<dependency>
208208
<groupId>com.intuit.fuzzymatcher</groupId>
209209
<artifactId>fuzzy-matcher</artifactId>
210-
<version>1.1.0</version>
210+
<version>1.2.0</version>
211211
</dependency>
212212
```
213+
(Note: This requires java 11. For java 8 use version 1.1.x)
213214

214215
### Input
215216
This library takes a collection of _Document_ objects with various _Elements_ as input.

0 commit comments

Comments
 (0)