add jaro_similarity/jaro_winkler_similarity to docs

This commit is contained in:
Max Bachmann 2021-08-20 12:56:26 +02:00
parent e3e04da293
commit 9562d4b69b
4 changed files with 12 additions and 4 deletions

View File

@ -1 +1 @@
1.4.1
1.5.0

View File

@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
author = 'Max Bachmann'
# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.5.0'
# -- General configuration ---------------------------------------------------

View File

@ -15,4 +15,12 @@ hamming
normalized_hamming
------------------
.. autofunction:: rapidfuzz.string_metric.normalized_hamming
.. autofunction:: rapidfuzz.string_metric.normalized_hamming
jaro_similarity
---------------
.. autofunction:: rapidfuzz.string_metric.jaro_similarity
jaro_winkler_similarity
-----------------------
.. autofunction:: rapidfuzz.string_metric.jaro_winkler_similarity

View File

@ -3,6 +3,6 @@ rapid string matching library
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "1.4.1"
__version__ = "1.5.0"
from rapidfuzz import process, fuzz, utils, levenshtein, string_metric