diff --git a/CHANGELOG.md b/CHANGELOG.md index 14242f3..e3f0e64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,14 @@ This log describes all the changes made to ERRANT since its release. +## v2.3.2 (14-04-22) + +1. Add more details to verbose ERRANT scoring. [#29](https://github.com/chrisjbryant/errant/pull/29) +2. Simplified the new rapidfuzz functions. [#35](https://github.com/chrisjbryant/errant/pull/35) + ## v2.3.1 (13-04-22) -1. Replaced the dependency on [python-Levenshtein](https://pypi.org/project/python-Levenshtein/) with [rapidfuzz](https://pypi.org/project/rapidfuzz/) to overcome a licensing conflict. ERRANT and its dependencies now all use the MIT license. This change has a negligible effect on a tiny number of alignments. [#34](https://github.com/chrisjbryant/errant/issues/34) +1. Replaced the dependency on [python-Levenshtein](https://pypi.org/project/python-Levenshtein/) with [rapidfuzz](https://pypi.org/project/rapidfuzz/) to overcome a licensing conflict. ERRANT and its dependencies now all use the MIT license. [#34](https://github.com/chrisjbryant/errant/issues/34) ## v2.3.0 (15-07-21) diff --git a/README.md b/README.md index 6a3ce00..26772cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ERRANT v2.3.1 +# ERRANT v2.3.2 This repository contains the grammatical ERRor ANnotation Toolkit (ERRANT) described in: diff --git a/errant/__init__.py b/errant/__init__.py index dfea4a7..51d2a74 100644 --- a/errant/__init__.py +++ b/errant/__init__.py @@ -3,7 +3,7 @@ from errant.annotator import Annotator # ERRANT version -__version__ = '2.3.1' +__version__ = '2.3.2' # Load an ERRANT Annotator object for a given language def load(lang, nlp=None): diff --git a/setup.py b/setup.py index 9bf94dc..bf21291 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "errant", - version = "2.3.1", + version = "2.3.2", license = "MIT", description = "The ERRor ANnotation Toolkit (ERRANT). Automatically extract and classify edits in parallel sentences.", long_description = readme, @@ -35,11 +35,10 @@ "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', "Topic :: Education", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Information Analysis",