Skip to content

Commit 9d09a03

Browse files
authored
bump to 3.3.1 (jxmorris12#161)
1 parent b8c3365 commit 9d09a03

6 files changed

Lines changed: 428 additions & 309 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# language_tool_python Changelog
22

3+
## 3.3.1 (2026-05-10)
4+
- Edited the LanguageTool snapshot current version (from 6.8-SNAPSHOT to 6.9-SNAPSHOT) to allow users to retrieve automatically the latest snapshot version of LT.
5+
36
## 3.3.0 (2026-03-07)
47
- Corrected a bug in `language_tool_python.server.LanguageTool._get_valid_spelling_file_path` where the spelling file was always the one for English, even when the LT instance was configured for a different language.
58
- Corrected a bug in `language_tool_python.server.LanguageTool` where, even if you specified a `language_tool_download_version`, the used LT version was always the latest one present on the system (the download was working correctly, but the downloaded version was not used).

coverage-badge.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/requirements.txt

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,23 @@ alabaster==0.7.16 ; python_full_version < '3.10'
66
alabaster==1.0.0 ; python_full_version >= '3.10'
77
babel==2.18.0
88
beautifulsoup4==4.14.3
9-
certifi==2026.2.25
10-
charset-normalizer==3.4.5
9+
certifi==2026.4.22
10+
charset-normalizer==3.4.7
1111
colorama==0.4.6 ; sys_platform == 'win32'
1212
docutils==0.21.2 ; python_full_version < '3.11'
1313
docutils==0.22.4 ; python_full_version >= '3.11'
1414
furo==2025.12.19
15-
idna==3.11
15+
idna==3.13
1616
imagesize==1.5.0 ; python_full_version < '3.10'
1717
imagesize==2.0.0 ; python_full_version >= '3.10'
1818
importlib-metadata==8.7.1 ; python_full_version < '3.10'
1919
jinja2==3.1.6
2020
markupsafe==3.0.3
21-
packaging==26.0
21+
packaging==26.2
2222
psutil==7.2.2
2323
pygments==2.20.0
24-
requests==2.32.5
24+
requests==2.32.5 ; python_full_version < '3.10'
25+
requests==2.33.1 ; python_full_version >= '3.10'
2526
roman-numerals==4.1.0 ; python_full_version >= '3.11'
2627
snowballstemmer==3.0.1
2728
soupsieve==2.8.3
@@ -39,8 +40,9 @@ sphinxcontrib-jsmath==1.0.1
3940
sphinxcontrib-qthelp==2.0.0
4041
sphinxcontrib-serializinghtml==2.0.0
4142
toml==0.10.2
42-
tomli==2.4.0 ; python_full_version < '3.11'
43+
tomli==2.4.1 ; python_full_version < '3.11'
4344
tqdm==4.67.3
4445
typing-extensions==4.15.0
45-
urllib3==2.6.3
46-
zipp==3.23.0 ; python_full_version < '3.10'
46+
urllib3==2.6.3 ; python_full_version < '3.10'
47+
urllib3==2.7.0 ; python_full_version >= '3.10'
48+
zipp==3.23.1 ; python_full_version < '3.10'

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = "language_tool_python"
1010
copyright = "2025, jxmorris12"
1111
author = "jxmorris12"
12-
release = "3.3.0" # Keep in sync with pyproject.toml
12+
release = "3.3.1" # Keep in sync with pyproject.toml
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

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 = "3.3.0" # Keep in sync with docs/source/conf.py
3+
version = "3.3.1" # Keep in sync with docs/source/conf.py
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)