Skip to content

Commit 1ab1a30

Browse files
authored
Merge pull request #102 from mdevolde/master
Bump to version 2.9.0
2 parents efd5bde + 9f424df commit 1ab1a30

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
![Test with PyTest](https://github.com/jxmorris12/language_tool_python/workflows/Test%20with%20PyTest/badge.svg)
66

7-
Current LanguageTool version: **6.4**
7+
Current LanguageTool version: **6.5**
88

99
This is a Python wrapper for [LanguageTool](https://languagetool.org). LanguageTool is open-source grammar tool, also known as the spellchecker for OpenOffice. This library allows you to make to detect grammar errors and spelling mistakes through a Python script or through a command-line interface.
1010

@@ -193,7 +193,6 @@ Here's a full list of configuration options. See the LanguageTool [HTTPServerCon
193193
```
194194
'maxTextLength' - maximum text length, longer texts will cause an error (optional)
195195
'maxTextHardLength' - maximum text length, applies even to users with a special secret 'token' parameter (optional)
196-
'secretTokenKey' - secret JWT token key, if set by user and valid, maxTextLength can be increased by the user (optional)
197196
'maxCheckTimeMillis' - maximum time in milliseconds allowed per check (optional)
198197
'maxErrorsPerWordRate' - checking will stop with error if there are more rules matches per word (optional)
199198
'maxSpellingSuggestions' - only this many spelling errors will have suggestions for performance reasons (optional,
@@ -205,17 +204,14 @@ Here's a full list of configuration options. See the LanguageTool [HTTPServerCon
205204
'requestLimitInBytes' - maximum aggregated size of requests per requestLimitPeriodInSeconds (optional)
206205
'timeoutRequestLimit' - maximum number of timeout request (optional)
207206
'requestLimitPeriodInSeconds' - time period to which requestLimit and timeoutRequestLimit applies (optional)
208-
'languageModel' - a directory with '1grams', '2grams', '3grams' sub directories which contain a Lucene index
207+
'languageModel' - a directory with '1grams', '2grams', '3grams' sub directories per language which contain a Lucene index
209208
each with ngram occurrence counts; activates the confusion rule if supported (optional)
210-
'word2vecModel' - a directory with word2vec data (optional), see
211-
https://github.com/languagetool-org/languagetool/blob/master/languagetool-standalone/CHANGES.md#word2vec
212209
'fasttextModel' - a model file for better language detection (optional), see
213210
https://fasttext.cc/docs/en/language-identification.html
214211
'fasttextBinary' - compiled fasttext executable for language detection (optional), see
215212
https://fasttext.cc/docs/en/support.html
216213
'maxWorkQueueSize' - reject request if request queue gets larger than this (optional)
217-
'rulesFile' - a file containing rules configuration, such as .langugagetool.cfg (optional)
218-
'warmUp' - set to 'true' to warm up server at start, i.e. run a short check with all languages (optional)
214+
'rulesFile' - a file containing rules configuration, such as .languagetool.cfg (optional)
219215
'blockedReferrers' - a comma-separated list of HTTP referrers (and 'Origin' headers) that are blocked and will not be served (optional)
220216
'premiumOnly' - activate only the premium rules (optional)
221217
'disabledRuleIds' - a comma-separated list of rule ids that are turned off for this server (optional)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "language_tool_python"
3-
version = "2.8.2"
3+
version = "2.9.0"
44
requires-python = ">=3.9"
55
description = "Checks grammar using LanguageTool."
66
readme = { file = "README.md", content-type = "text/markdown" }

0 commit comments

Comments
 (0)