Skip to content

Commit 728134a

Browse files
committed
Prepare 7.0 release
1 parent 40719bf commit 728134a

8 files changed

+15
-14
lines changed

CHANGELOG.org

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
* Changelog
2-
** Master branch
2+
** Release 7.0
3+
* Support for new language server - Shttps://github.com/lighttiger2505/sqls (thanks to @v2okimochi)
4+
* Provided automatic installers for elp/css/bash/purescript(thanks to @kiennq)
35
* Configurable Rust Analyzer inlay face via ~lsp-rust-analyzer-inlay-face~.
46
* Add ~lsp-headerline-breadcrumb-mode~ which shows a breadcrumb with the document symbols on headerline when enabled.
57
* Add ~lsp-modeline-code-actions-mode~ which shows code actions on modeline when enabled.
@@ -29,7 +31,6 @@
2931
can be enabled via =lsp-headerline-breadcrumb-enable=
3032
* Migrated lsp-mode to use plists(thanks to @yyoncho, @kiennq and @ericdallo).
3133
* lsp-diagnostics-modeline: perf improvement (thanks to @kiennq)
32-
3334
** Release 6.3
3435
* Implemented ~company-capf~ integration. ~company-lsp~ is no longer supported.
3536
* Dropped support for dart language server in favour of dart SDK(breaking)

lsp-go.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The codelens can be found at https://github.com/golang/tools/blob/4d5ea46c79fe3b
114114
:type (lsp-gopls--defcustom-available-as-alist-type lsp-gopls-available-codelens)
115115
:group 'lsp-gopls
116116
:risky t
117-
:package-version '(lsp-mode "6.4"))
117+
:package-version '(lsp-mode "7.0"))
118118

119119
(lsp-register-custom-settings
120120
'(("gopls.usePlaceholders" lsp-gopls-use-placeholders t)

lsp-haxe.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
(defcustom lsp-haxe-hxml "build.hxml"
6767
"The compile file for the haxe project."
6868
:type 'file
69-
:package-version '(lsp-mode . "6.4"))
69+
:package-version '(lsp-mode . "7.0"))
7070

7171
;; https://github.com/emacs-lsp/lsp-mode/blob/150a933694349df960dc8fd7a15e04f5727e6433/lsp-rust.el#L251
7272
(lsp-defun lsp-clients--haxe-processStart (_workspace (&haxe:ProcessStartNotification :title))

lsp-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: Vibhav Pant, Fangrui Song, Ivan Yonchovski
66
;; Keywords: languages
77
;; Package-Requires: ((emacs "25.1") (dash "2.14.1") (dash-functional "2.14.1") (f "0.20.0") (ht "2.0") (spinner "1.7.3") (markdown-mode "2.3") (lv "0"))
8-
;; Version: 6.3.1
8+
;; Version: 7.0
99

1010
;; URL: https://github.com/emacs-lsp/lsp-mode
1111
;; This program is free software; you can redistribute it and/or modify
@@ -606,7 +606,7 @@ This flag affects only server which do not support incremental update."
606606
"If non-nil, enable the `dap-auto-configure-mode`."
607607
:type 'boolean
608608
:group 'lsp-mode
609-
:package-version '(lsp-mode . "6.4"))
609+
:package-version '(lsp-mode . "7.0"))
610610

611611
(defcustom lsp-links-check-internal 0.1
612612
"The interval for updating document links."

lsp-pyls.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -372,14 +372,14 @@ should be the python executable. This option will be prioritized over
372372
Can hit performance, as well as lsp-mode implements its own fuzzy search on completion items."
373373
:type 'boolean
374374
:group 'lsp-pyls
375-
:package-version '(lsp-mode . "6.4"))
375+
:package-version '(lsp-mode . "7.0"))
376376

377377
(defcustom lsp-pyls-plugins-jedi-completion-include-class-objects t
378378
"If enabled, adds class objects to completion in order to avoid snippet with init args.
379379
Has no effect if `lsp-pyls-plugins-jedi-completion-include-params' is disabled. Requires pyls >= 0.33.0"
380380
:type 'boolean
381381
:group 'lsp-pyls
382-
:package-version '(lsp-mode . "6.4"))
382+
:package-version '(lsp-mode . "7.0"))
383383

384384
(defcustom lsp-pyls-rename-backend 'jedi
385385
"Choose renaming backend. Jedi is preferred but only works for python >= 3.6 and pyls >= 0.32.0
@@ -388,7 +388,7 @@ So it will rename only references it can find."
388388
:type '(choice (const :tag "jedi" jedi)
389389
(const :tag "rope" rope))
390390
:group 'lsp-pyls
391-
:package-version '(lsp-mode . "6.4"))
391+
:package-version '(lsp-mode . "7.0"))
392392

393393

394394
(defun lsp-pyls-get-pyenv-environment ()

lsp-rust.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ The command should include `--message=format=json` or similar option."
460460
"The face to use for the Rust Analyzer inlays."
461461
:type 'face
462462
:group 'lsp-rust
463-
:package-version '(lsp-mode . "6.4"))
463+
:package-version '(lsp-mode . "7.0"))
464464

465465
(defun lsp-rust-analyzer--make-init-options ()
466466
"Init options for rust-analyzer"

lsp-serenata.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"LSP support for the PHP programming language, using serenata"
3131
:group 'lsp-mode
3232
:link '(url-link "https://gitlab.com/Serenata/Serenata")
33-
:package-version '(lsp-mode . "6.4"))
33+
:package-version '(lsp-mode . "7.0"))
3434

3535
(defcustom lsp-serenata-server-path
3636
"serenata.phar"

lsp-sqls.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@
3030
"LSP support for SQL, using sqls"
3131
:group 'lsp-mode
3232
:link '(url-link "https://github.com/lighttiger2505/sqls")
33-
:package-version `(lsp-mode . "6.4"))
33+
:package-version `(lsp-mode . "7.0"))
3434

3535
(defcustom lsp-sqls-server "sqls"
3636
"Path to the `sqls` binary."
3737
:group 'lsp-sqls
3838
:risky t
3939
:type 'file
40-
:package-version `(lsp-mode . "6.4"))
40+
:package-version `(lsp-mode . "7.0"))
4141

4242
(defcustom lsp-sqls-workspace-config-path "workspace"
4343
"If non-nil then setup workspace configuration with json file path."
4444
:group 'lsp-sqls
4545
:risky t
4646
:type '(choice (const "workspace")
4747
(const "root"))
48-
:package-version `(lsp-mode . "6.4"))
48+
:package-version `(lsp-mode . "7.0"))
4949

5050
(defun lsp-sqls--make-launch-cmd ()
5151
(-let [base `(,lsp-sqls-server)]

0 commit comments

Comments
 (0)