Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# language_tool_python Changelog

## 3.3.1 (2026-05-10)
- 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.

## 3.3.0 (2026-03-07)
- 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.
- 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).
Expand Down
2 changes: 1 addition & 1 deletion coverage-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 10 additions & 8 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@ alabaster==0.7.16 ; python_full_version < '3.10'
alabaster==1.0.0 ; python_full_version >= '3.10'
babel==2.18.0
beautifulsoup4==4.14.3
certifi==2026.2.25
charset-normalizer==3.4.5
certifi==2026.4.22
charset-normalizer==3.4.7
colorama==0.4.6 ; sys_platform == 'win32'
docutils==0.21.2 ; python_full_version < '3.11'
docutils==0.22.4 ; python_full_version >= '3.11'
furo==2025.12.19
idna==3.11
idna==3.13
imagesize==1.5.0 ; python_full_version < '3.10'
imagesize==2.0.0 ; python_full_version >= '3.10'
importlib-metadata==8.7.1 ; python_full_version < '3.10'
jinja2==3.1.6
markupsafe==3.0.3
packaging==26.0
packaging==26.2
psutil==7.2.2
pygments==2.20.0
requests==2.32.5
requests==2.32.5 ; python_full_version < '3.10'
requests==2.33.1 ; python_full_version >= '3.10'
roman-numerals==4.1.0 ; python_full_version >= '3.11'
snowballstemmer==3.0.1
soupsieve==2.8.3
Expand All @@ -39,8 +40,9 @@ sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==2.0.0
sphinxcontrib-serializinghtml==2.0.0
toml==0.10.2
tomli==2.4.0 ; python_full_version < '3.11'
tomli==2.4.1 ; python_full_version < '3.11'
tqdm==4.67.3
typing-extensions==4.15.0
urllib3==2.6.3
zipp==3.23.0 ; python_full_version < '3.10'
urllib3==2.6.3 ; python_full_version < '3.10'
urllib3==2.7.0 ; python_full_version >= '3.10'
zipp==3.23.1 ; python_full_version < '3.10'
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "language_tool_python"
copyright = "2025, jxmorris12"
author = "jxmorris12"
release = "3.3.0" # Keep in sync with pyproject.toml
release = "3.3.1" # Keep in sync with pyproject.toml

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "language_tool_python"
version = "3.3.0" # Keep in sync with docs/source/conf.py
version = "3.3.1" # Keep in sync with docs/source/conf.py
requires-python = ">=3.9"
description = "Checks grammar using LanguageTool."
readme = { file = "README.md", content-type = "text/markdown" }
Expand Down
Loading
Loading