From ad9f8cc7cf221dde2dd3446995b6e57dcb2bba39 Mon Sep 17 00:00:00 2001 From: Stephan Georg Date: Tue, 18 May 2021 14:30:46 +0200 Subject: [PATCH] Updated README. Bump version --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d3c6ccc..1749ddd 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/package.json b/package.json index 8ea97b2..c650033 100644 --- a/package.json +++ b/package.json @@ -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": {