From 8fa102e192125e434705791208a115745b176636 Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Wed, 19 Jul 2023 10:30:11 +0200 Subject: [PATCH] Cut 1.25.0 --- VERSION | 2 +- messages.json | 1 + messages/1.25.0.txt | 22 ++++++++++++++++++++++ plugin/core/version.py | 2 +- 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 messages/1.25.0.txt diff --git a/VERSION b/VERSION index d43704683..f2538f8b5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.24.0 \ No newline at end of file +1.25.0 \ No newline at end of file diff --git a/messages.json b/messages.json index c62949ad2..30cf4dde0 100644 --- a/messages.json +++ b/messages.json @@ -22,6 +22,7 @@ "1.22.0": "messages/1.22.0.txt", "1.23.0": "messages/1.23.0.txt", "1.24.0": "messages/1.24.0.txt", + "1.25.0": "messages/1.25.0.txt", "1.3.0": "messages/1.3.0.txt", "1.3.1": "messages/1.3.1.txt", "1.4.0": "messages/1.4.0.txt", diff --git a/messages/1.25.0.txt b/messages/1.25.0.txt new file mode 100644 index 000000000..5031e8c53 --- /dev/null +++ b/messages/1.25.0.txt @@ -0,0 +1,22 @@ +=> 1.25.0 + +⚠️ To ensure that everything works properly after LSP package is updated, it's strongly recommended to restart +Sublime Text once it finishes updating all packages. ⚠️ + +# New features + +- Add option to show diagnostics as annotations (#1702) (Rafał Chłodnicki) +- Add argument "include_declaration" to "lsp_symbol_references" (#2275) (Magnus Karlsson) + +# Fixes + +- Fix rare KeyError (Janos Wortmann) +- fix "Error rewriting command" warning triggered on startup (#2277) (Rafał Chłodnicki) +- fix crash on checking excluded folders with missing project data (#2276) (Rafał Chłodnicki) +- Fix tagged diagnostics flickering on document changes (#2274) (Rafał Chłodnicki) + +# Improvements + +- Show server crashed dialog on unexpected output in server's stdout (Rafal Chlodnicki) +- Only do a single pass on running code actions on save (#2283) (Rafał Chłodnicki) +- Take font style of sighelp active parameter from color scheme (#2279) (jwortmann) diff --git a/plugin/core/version.py b/plugin/core/version.py index c6b887fcb..1952e1925 100644 --- a/plugin/core/version.py +++ b/plugin/core/version.py @@ -1 +1 @@ -__version__ = (1, 24, 0) +__version__ = (1, 25, 0)