Skip to content

Commit

Permalink
ERRANT v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Bryant committed Apr 14, 2022
1 parent 0dc0848 commit ea07b4a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion 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:

Expand Down
2 changes: 1 addition & 1 deletion errant/__init__.py
Expand Up @@ -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):
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Expand Up @@ -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,
Expand All @@ -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",
Expand Down

0 comments on commit ea07b4a

Please sign in to comment.