From 6a6745285e9e10b9d0bc3ecfba29a7d49cb62d76 Mon Sep 17 00:00:00 2001 From: mdevolde Date: Sun, 10 May 2026 14:57:43 +0200 Subject: [PATCH] chore: bump LT release version related to snapshots --- README.md | 6 +++--- language_tool_python/download_lt.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f167a36..3e7f25d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ It can: - call your own remote LanguageTool server, - be used from Python code and from a CLI. -Default local download target: `latest` snapshot (currently `6.8-SNAPSHOT`). +Default local download target: `latest` snapshot (currently `6.9-SNAPSHOT`). ## Documentation @@ -90,7 +90,7 @@ with language_tool_python.LanguageTool( ``` Accepted formats: -- `latest` (default): latest snapshot configured by this package (`6.8-SNAPSHOT` at the moment) +- `latest` (default): latest snapshot configured by this package (`6.9-SNAPSHOT` at the moment) - `YYYYMMDD`: snapshot by date (example: `20260201`) - `X.Y`: release version (example: `6.7`, `4.0`) @@ -317,7 +317,7 @@ Example: ```bash export LTP_PATH=/path/to/cache -export LTP_JAR_DIR_PATH=/path/to/LanguageTool-6.8-SNAPSHOT +export LTP_JAR_DIR_PATH=/path/to/LanguageTool-6.9-SNAPSHOT ``` ## Resource Management diff --git a/language_tool_python/download_lt.py b/language_tool_python/download_lt.py index 30306c3..04cd711 100755 --- a/language_tool_python/download_lt.py +++ b/language_tool_python/download_lt.py @@ -48,7 +48,7 @@ FILENAME_RELEASE = "LanguageTool-{version}.zip" LTP_DOWNLOAD_VERSION = "latest" -LT_SNAPSHOT_CURRENT_VERSION = "6.8-SNAPSHOT" +LT_SNAPSHOT_CURRENT_VERSION = "6.9-SNAPSHOT" JAVA_VERSION_REGEX = re.compile( r'^(?:java|openjdk) version "(?P\d+)(|\.(?P\d+)\.[^"]+)"',