diff --git a/VERSION b/VERSION index 732aa7d7d..bb7a48bb9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.10 \ No newline at end of file +1.2.11 \ No newline at end of file diff --git a/messages.json b/messages.json index 237fc30c1..2517464b2 100644 --- a/messages.json +++ b/messages.json @@ -12,6 +12,7 @@ "1.2.0": "messages/1.2.0.txt", "1.2.1": "messages/1.2.1.txt", "1.2.10": "messages/1.2.10.txt", + "1.2.11": "messages/1.2.11.txt", "1.2.2": "messages/1.2.2.txt", "1.2.3": "messages/1.2.3.txt", "1.2.4": "messages/1.2.4.txt", diff --git a/messages/1.2.11.txt b/messages/1.2.11.txt new file mode 100644 index 000000000..20a1f5e1f --- /dev/null +++ b/messages/1.2.11.txt @@ -0,0 +1,17 @@ +=> 1.2.11 + +Fixes and features: +- Account for font size for popup width (#1580) (Raoul Wols) + em_width() is now employed instead of a hardcoded 800px +- Fix a tiny html render bug regarding diagnostic.relatedInformation (Raoul Wols) +- Expand also built-in variables in lsp_execute's command arguments (#1577) (Rafał Chłodnicki) +- Change popup style (#1574) (Предраг Николић / Predrag Nikolic) +- A bit more precise selectors so users can customize their color scheme (Raoul Wols) + You can assign colors to the following scopes in your color scheme to customize + the signature help look: + * entity.name.function.sighelp.lsp + * variable.function.sighelp.lsp +- Fix #1572: prefer documentEdits over changes (Raoul Wols) + This fixes a bug in LSP that caused duplicate text edits for the elm language server +- Fix issue with diagnostics regions sometimes not being removed on undo (Rafał Chłodnicki) +- Fix inconsistent popup's bottom margins (#1568) (Rafał Chłodnicki) diff --git a/plugin/core/version.py b/plugin/core/version.py index 987f50bf0..413147ddb 100644 --- a/plugin/core/version.py +++ b/plugin/core/version.py @@ -1 +1 @@ -__version__ = (1, 2, 10) +__version__ = (1, 2, 11)