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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 6 additions & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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"

0 commit comments

Comments
 (0)