Skip to content

Commit ac71048

Browse files
authored
feat: Drop Emacs 27. (#4720)
1 parent 553cf7b commit ac71048

File tree

8 files changed

+11
-14
lines changed

8 files changed

+11
-14
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: purcell/setup-emacs@master
2121
with:
22-
version: 27.1
22+
version: 28.1
2323

2424
- uses: conao3/setup-cask@master
2525
with:

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
matrix:
1616
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
1717
emacs-version:
18-
- 27.2
1918
- 28.2
2019
- 29.4
2120
- 30.1
@@ -33,9 +32,6 @@ jobs:
3332
- os: windows-latest
3433
emacs-version: snapshot
3534
experimental: true
36-
exclude:
37-
- os: macos-latest
38-
emacs-version: 27.2
3935

4036
steps:
4137
- uses: jcs090218/setup-emacs@master

CHANGELOG.org

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
* Add support for environment variables in rust analyzer runnables. Allowing the new ~Update Tests (Expect)~ code lens to work as expected.
3434
* Add support for [[https://github.com/mathworks/MATLAB-language-server][MATLAB language server]] (requires [[https://github.com/MathWorks/Emacs-MATLAB-Mode][matlab-mode]]).
3535
* Add support for [[https://github.com/c3lang/c3c][c3 language]] (requires [[https://github.com/c3lang/c3-ts-mode][c3-ts-mode]] and [[https://github.com/pherrymason/c3-lsp][c3lsp]]).
36+
* Drop support for emacs 27.1 and 27.2
3637

3738
** 9.0.0
3839
* Add language server config for QML (Qt Modeling Language) using qmlls.

Eask

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"lsp-semantic-tokens.el"
3030
"clients/*.el")
3131

32-
(depends-on "emacs" "27.1")
32+
(depends-on "emacs" "28.1")
3333
(depends-on "dash")
3434
(depends-on "f")
3535
(depends-on "ht")

lsp-inline-completion.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
;;; lsp-inline-completion.el --- LSP mode -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020-2024 emacs-lsp maintainers
3+
;; Copyright (C) 2020-2025 emacs-lsp maintainers
44

55
;; Author: Rodrigo Kassick
66
;; Keywords: languages
7-
;; Package-Requires: ((emacs "27.1") (dash "2.18.0") (spinner "1.7.3"))
7+
;; Package-Requires: ((emacs "28.1") (dash "2.18.0") (spinner "1.7.3"))
88
;; Version: 9.0.1
99

1010
;; URL: https://github.com/emacs-lsp/lsp-mode

lsp-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
;;; lsp-mode.el --- LSP mode -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020-2024 emacs-lsp maintainers
3+
;; Copyright (C) 2020-2025 emacs-lsp maintainers
44

55
;; Author: Vibhav Pant, Fangrui Song, Ivan Yonchovski
66
;; Keywords: languages
7-
;; Package-Requires: ((emacs "27.1") (dash "2.18.0") (f "0.20.0") (ht "2.3") (spinner "1.7.3") (markdown-mode "2.3") (lv "0") (eldoc "1.11"))
7+
;; Package-Requires: ((emacs "28.1") (dash "2.18.0") (f "0.20.0") (ht "2.3") (spinner "1.7.3") (markdown-mode "2.3") (lv "0") (eldoc "1.11"))
88
;; Version: 9.0.1
99

1010
;; URL: https://github.com/emacs-lsp/lsp-mode

test/lsp-mock-server-test.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
;;; lsp-mock-server-test.el --- Unit test utilities -*- lexical-binding: t -*-
22

3-
;; Copyright (C) 2024-2024 emacs-lsp maintainers
3+
;; Copyright (C) 2024-2025 emacs-lsp maintainers
44

55
;; Author: Arseniy Zaostrovnykh
6-
;; Package-Requires: ((emacs "27.1"))
6+
;; Package-Requires: ((emacs "28.1"))
77
;; Version: 0.0.1
88
;; License: GPL-3.0-or-later
99

test/mock-lsp-server.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
;;; mock-lsp-server.el --- Mock LSP server -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2024-2024 emacs-lsp maintainers
3+
;; Copyright (C) 2024-2025 emacs-lsp maintainers
44

55
;; Author: Arseniy Zaostrovnykh
6-
;; Package-Requires: ((emacs "27.1"))
6+
;; Package-Requires: ((emacs "28.1"))
77
;; Version: 0.1.0
88
;; License: GPL-3.0-or-later
99

0 commit comments

Comments
 (0)