Skip to content

Commit

Permalink
Updated README. Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanGeorg committed May 18, 2021
1 parent 50106bc commit ad9f8cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# trigram-similarity
# trigram-similarity [![npm version](https://badge.fury.io/js/trigram-similarity.svg)](https://badge.fury.io/js/trigram-similarity)

The trigram-similarity module provides functions and operators for determining the similarity of alphanumeric text based on trigram matching.
This is the exact implementation of Postgres [pg_trgm](https://www.postgresql.org/docs/13/pgtrgm.html) and returns a number that indicates how
This is the JavaScript implementation of Postgres [pg_trgm](https://www.postgresql.org/docs/13/pgtrgm.html) and returns a number that indicates how
similar the two arguments are. The range of the result is zero (indicating that the two strings are completely dissimilar) to one (indicating
that the two strings are identical).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trigram-similarity",
"version": "1.0.0",
"version": "1.0.1",
"description": "Determining the similarity of alphanumeric text based on trigram matching",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit ad9f8cc

Please sign in to comment.