Skip to content

Commit

Permalink
1.2.0 version release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhatia committed Oct 18, 2021
1 parent 79e1be1 commit ba09145
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.2.0 - 2021-10-18
### Added
- Support for Java 11
- Significant improvement in memory footprint

## 1.1.0 - 2021-10-18
### Added
- Support for chaining multiple Tokenizers using `chainTokenizers` function
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Readme.md file gives a good overview of the architecture. Make sure to review th

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

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.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,10 @@ The library is published to maven central
<dependency>
<groupId>com.intuit.fuzzymatcher</groupId>
<artifactId>fuzzy-matcher</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
```
(Note: This requires java 11. For java 8 use version 1.1.x)

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

0 comments on commit ba09145

Please sign in to comment.