diff --git a/CHANGELOG.md b/CHANGELOG.md index 15d82d6..6724c73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # language_tool_python Changelog +## 3.1.0 (2025-11-23) +- Added an optional parameter to `LanguageTool` (`proxies`). +- Added an `proxies` attribute to `LanguageTool` (This attribute is used by the `LanguageTool._query_server` method). +- Added new read-only properties to `LanguageTool`: + - `url` + - `is_remote` + - `host` + - `port` +- Edited the documentation of the `LanguageTool` class to improve clarity. + ## 3.0.0 (2025-11-20) ### What's New: diff --git a/docs/source/conf.py b/docs/source/conf.py index afbf39f..fd0fda8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -9,7 +9,7 @@ project = "language_tool_python" copyright = "2025, jxmorris12" author = "jxmorris12" -release = "3.0.0" # Keep in sync with pyproject.toml +release = "3.1.0" # Keep in sync with pyproject.toml # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index dd965d4..2bdee59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "language_tool_python" -version = "3.0.0" # Keep in sync with docs/source/conf.py +version = "3.1.0" # 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" } diff --git a/uv.lock b/uv.lock index b4a70d4..6ae30ff 100644 --- a/uv.lock +++ b/uv.lock @@ -524,7 +524,7 @@ wheels = [ [[package]] name = "language-tool-python" -version = "3.0.0" +version = "3.1.0" source = { editable = "." } dependencies = [ { name = "packaging" },