diff --git a/VERSION b/VERSION index 72f3c1dac..ff6d09b31 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.29.0 \ No newline at end of file +1.30.0 \ No newline at end of file diff --git a/messages.json b/messages.json index 58ed88d9f..68ebb9221 100644 --- a/messages.json +++ b/messages.json @@ -29,6 +29,7 @@ "1.29.0": "messages/1.29.0.txt", "1.3.0": "messages/1.3.0.txt", "1.3.1": "messages/1.3.1.txt", + "1.30.0": "messages/1.30.0.txt", "1.4.0": "messages/1.4.0.txt", "1.5.0": "messages/1.5.0.txt", "1.6.0": "messages/1.6.0.txt", diff --git a/messages/1.30.0.txt b/messages/1.30.0.txt new file mode 100644 index 000000000..4ff2c8a26 --- /dev/null +++ b/messages/1.30.0.txt @@ -0,0 +1,21 @@ +=> 1.30.0 + +# Breaking changes + +- [godot-editor](https://lsp.sublimetext.io/language_servers/#gdscript-godot-engine) client configuration default `tcp_port` value is now `6005` instead of `6008`. Older versions of Godot(3.x) use port `6008`. (#2447) (Предраг Николић) + +# Fixes and Improvements + +- Keep tab selection and focus when applying WorkspaceEdit (#2431) (Janos Wortmann) +- Enhancements for the rename panel (#2428) (Janos Wortmann) +- Fix URI format for res scheme (#2432) (Janos Wortmann) +- If `"log_debug"` is enabled, `window/logMessage` will be printed to the Sublime Text Console instead of LSP log panel (#2444) (Janos Wortmann) + +# Documentation + +- docs: Add Toit (#2425) (Serjan Nasredin) +- docs: Add Solidity (#2383) (Nikita Kozlov) + +# Plugin API changes + +- Allow plugins to ignore certain views (#2410) (Janos Wortmann) diff --git a/plugin/core/version.py b/plugin/core/version.py index b68c353d5..3ecf3f5a1 100644 --- a/plugin/core/version.py +++ b/plugin/core/version.py @@ -1 +1 @@ -__version__ = (1, 29, 0) +__version__ = (1, 30, 0)