Skip to content

Commit a96732f

Browse files
committed
initial 2.1.0 release commit
1 parent 8445d21 commit a96732f

File tree

337 files changed

+1319
-896
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+1319
-896
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ by contacting ContraxSuite Licensing at <<license@contraxsuite.com>>.
4646
* see python-requirements.txt file for full information
4747

4848
## Releases
49+
* 2.0.1: September 16, 2021 - Twenty third scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0)
4950
* 2.0.0: May 10, 2021 - Twenty second scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0)
5051
* 1.8.0: December 2, 2020 - Twenty first scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/1.8.0)
5152
* 1.7.0: August 27, 2020 - Twentieth scheduled public release; [code](https://github.com/LexPredict/lexpredict-lexnlp/tree/1.7.0)

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ Requirements
8181
Releases
8282
--------
8383

84+
- 2.1.0: September 16, 2021 - Twenty third scheduled public release;
85+
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0>`__
8486
- 2.0.0: May 10, 2021 - Twenty second scheduled public release;
8587
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0>`__
8688
- 1.8.0: December 2, 2020 - Twenty first scheduled public release;

documentation/docs/source/changes.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Changelog
55
============
66

7+
2.1.0 - September 16, 2021
8+
----------------
9+
* Improved LexNLP handling for companies for the "EN" locale.
10+
* Improved LexNLP handling for dates for all locales and dates parser accuracy for the "DE" locale.
11+
712
2.0.0 - May 10, 2021
813
----------------
914
* Tune extracting facts from text for different locales.
@@ -14,7 +19,7 @@ Changelog
1419
----------------
1520
* Improved LexNLP handling for definitions for the "EN" locale.
1621
* Implemented rating OCR quality in texts.
17-
* Migrated numeric data in parsers sesults to decimal format to avoid losing fraction digits.
22+
* Migrated numeric data in parsers results to decimal format to avoid losing fraction digits.
1823

1924
1.7.0 - August 27, 2020
2025
----------------

documentation/docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = 'ContraxSuite, LLC'
2626

2727
# The short X.Y version
28-
version = '2.0.0'
28+
version = '2.1.0'
2929
# The full version, including alpha/beta/rc tags
30-
release = '2.0.0'
30+
release = '2.1.0'
3131

3232
# -- General configuration ---------------------------------------------------
3333

documentation/docs/source/license.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ License
77
AGPL License
88
----------------
99
LexNLP is available by default under the terms of the GNU Affero General Public License v3.0.
10-
https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE
10+
https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE
1111

1212

1313
License Release

documentation/docs/source/modules/extract/en/courts.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ of court or venue references from text.
1818
* US Federal and State courts
1919

2020
This data is governed by a separate Creative Commons Attribution Share Alike 4.0 license here:
21-
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.0.0/LICENSE
21+
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.1.0/LICENSE
2222

2323

2424
The full list of current unit test cases can be found here:

documentation/docs/source/modules/extract/en/geoentities.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ of geopolitical or geographic references from text.
1212
https://github.com/LexPredict/lexpredict-legal-dictionary
1313

1414
This data is governed by a separate Creative Commons Attribution Share Alike 4.0 license here:
15-
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.0.0/LICENSE
15+
https://github.com/LexPredict/lexpredict-legal-dictionary/blob/2.1.0/LICENSE
1616

1717

1818
The full list of current unit test cases can be found here:

index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ Requirements
8181
Releases
8282
--------
8383

84+
- 2.1.0: September 16, 2021 - Twenty third scheduled public release;
85+
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.1.0>`__
8486
- 2.0.0: May 10, 2021 - Twenty second scheduled public release;
8587
`code <https://github.com/LexPredict/lexpredict-lexnlp/tree/2.0.0>`__
8688
- 1.8.0: December 2, 2020 - Twenty first scheduled public release;

lexnlp/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
77

lexnlp/config/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"

lexnlp/config/en/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"

lexnlp/config/en/company_types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
1212
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
13-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
14-
__version__ = "2.0.0"
13+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
14+
__version__ = "2.1.0"
1515
__maintainer__ = "LexPredict, LLC"
1616
__email__ = "support@contraxsuite.com"
1717

lexnlp/config/en/geoentities_config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
66
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
7-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
8-
__version__ = "2.0.0"
7+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
8+
__version__ = "2.1.0"
99
__maintainer__ = "LexPredict, LLC"
1010
__email__ = "support@contraxsuite.com"
1111

lexnlp/config/stanford.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
66
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
7-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
8-
__version__ = "2.0.0"
7+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
8+
__version__ = "2.1.0"
99
__maintainer__ = "LexPredict, LLC"
1010
__email__ = "support@contraxsuite.com"
1111

lexnlp/extract/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"# -*- coding: utf-8 -*-

lexnlp/extract/all_locales/amounts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/citations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/copyrights.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/court_citations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/courts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/dates.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/definitions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/durations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/geoentities.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

@@ -18,8 +18,8 @@
1818

1919
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
2020
__copyright__ = "Copyright 2015-2020, ContraxSuite, LLC"
21-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
22-
__version__ = "2.0.0"
21+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
22+
__version__ = "2.1.0"
2323
__maintainer__ = "LexPredict, LLC"
2424
__email__ = "support@contraxsuite.com"
2525

lexnlp/extract/all_locales/languages.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/money.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

lexnlp/extract/all_locales/percents.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
44
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
5-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
6-
__version__ = "2.0.0"
5+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
6+
__version__ = "2.1.0"
77
__maintainer__ = "LexPredict, LLC"
88
__email__ = "support@contraxsuite.com"
99

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"

lexnlp/extract/all_locales/tests/test_locales.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
99
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
10-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
11-
__version__ = "2.0.0"
10+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
11+
__version__ = "2.1.0"
1212
__maintainer__ = "LexPredict, LLC"
1313
__email__ = "support@contraxsuite.com"
1414

lexnlp/extract/common/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"

lexnlp/extract/common/annotation_locator_type.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
77

lexnlp/extract/common/annotation_type.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
77

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"

lexnlp/extract/common/annotations/act_annotation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
77

lexnlp/extract/common/annotations/amount_annotation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
77

lexnlp/extract/common/annotations/citation_annotation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "ContraxSuite, LLC; LexPredict, LLC"
22
__copyright__ = "Copyright 2015-2021, ContraxSuite, LLC"
3-
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.0.0/LICENSE"
4-
__version__ = "2.0.0"
3+
__license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/2.1.0/LICENSE"
4+
__version__ = "2.1.0"
55
__maintainer__ = "LexPredict, LLC"
66
__email__ = "support@contraxsuite.com"
77

0 commit comments

Comments
 (0)