Skip to content

Commit 3153495

Browse files
[ci] Drop Emacs 26, test Emacs 30
1 parent 6594b4a commit 3153495

File tree

6 files changed

+30
-21
lines changed

6 files changed

+30
-21
lines changed

.circleci/config.yml

+13-12
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,6 @@ commands:
5454
command: eldev -dtT compile --warnings-as-errors
5555

5656
jobs:
57-
test-ubuntu-emacs-26:
58-
docker:
59-
- image: silex/emacs:26-ci
60-
entrypoint: bash
61-
steps:
62-
- setup
63-
- test
64-
6557
test-ubuntu-emacs-27:
6658
docker:
6759
- image: silex/emacs:27-ci
@@ -77,6 +69,7 @@ jobs:
7769
steps:
7870
- setup
7971
- test
72+
8073
test-ubuntu-emacs-29:
8174
docker:
8275
- image: silex/emacs:29-ci
@@ -85,6 +78,14 @@ jobs:
8578
- setup
8679
- test
8780

81+
test-ubuntu-emacs-30:
82+
docker:
83+
- image: silex/emacs:30-ci
84+
entrypoint: bash
85+
steps:
86+
- setup
87+
- test
88+
8889
test-ubuntu-emacs-master:
8990
docker:
9091
- image: silex/emacs:master-ci
@@ -131,10 +132,6 @@ workflows:
131132
jobs:
132133
- test-shellcheck
133134
- test-lint
134-
- test-ubuntu-emacs-26:
135-
requires:
136-
- test-lint
137-
- test-shellcheck
138135
- test-ubuntu-emacs-27:
139136
requires:
140137
- test-lint
@@ -147,6 +144,10 @@ workflows:
147144
requires:
148145
- test-lint
149146
- test-shellcheck
147+
- test-ubuntu-emacs-30:
148+
requires:
149+
- test-lint
150+
- test-shellcheck
150151
- test-ubuntu-emacs-master:
151152
requires:
152153
- test-lint

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ jobs:
2323
matrix:
2424
# Test all Emacs versions on Ubuntu.
2525
os: [ubuntu-latest]
26-
emacs_version: ['26.3', '27.2', '28.2', '29.3', 'snapshot']
26+
emacs_version: ['27.2', '28.2', '29.3', '30.1', 'snapshot']
2727
java_version: ['21']
2828
include:
2929
# For other OSes, test only the latest stable Emacs version.
3030
- os: macos-latest # aarch64
31-
emacs_version: '29.3'
31+
emacs_version: '30.1'
3232
java_version: '21'
3333
- os: macos-13 # x64
34-
emacs_version: '29.3'
34+
emacs_version: '30.1'
3535
java_version: '21'
3636
- os: windows-latest
37-
emacs_version: '29.3'
37+
emacs_version: '30.1'
3838
java_version: '21'
3939

4040
steps:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Changes
66

7+
- [#3782](https://github.com/clojure-emacs/cider/issues/3782): **(Breaking)** Drop official support for Emacs 26.
78
- [#3777](https://github.com/clojure-emacs/cider/issues/3777): Inspector no longer displays parsed Javadoc for Java classes and members.
89

910
## 1.17.1 (2025-02-25)

cider.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
;; Maintainer: Bozhidar Batsov <[email protected]>
1313
;; URL: https://www.github.com/clojure-emacs/cider
1414
;; Version: 1.18.0-snapshot
15-
;; Package-Requires: ((emacs "26") (clojure-mode "5.19") (parseedn "1.2.1") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
15+
;; Package-Requires: ((emacs "27") (clojure-mode "5.19") (parseedn "1.2.1") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
1616
;; Keywords: languages, clojure, cider
1717

1818
;; This program is free software: you can redistribute it and/or modify

doc/modules/ROOT/pages/about/compatibility.adoc

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
== Emacs
44

5-
CIDER supports Emacs 26.1+. More generally we try to support the last 3 major Emacs releases
5+
CIDER supports Emacs 27.1+. More generally we try to support the last 3 major Emacs releases
66
when that's feasible and doesn't add a lot of maintenance overhead.
77

88
NOTE: We pay special attention to supporting whatever Emacs is bundled with the current stable Debian
@@ -16,7 +16,7 @@ NOTE: We pay special attention to supporting whatever nREPL is bundled with the
1616

1717
== Java
1818

19-
CIDER officially targets Java 8, Java 11, Java 17, Java 21, and the most recent
19+
CIDER officially targets Java 8, 11, 17, 21, and the most recent
2020
non-LTS version. Generally speaking, we aim to support all Java releases that
2121
are currently officially supported by Oracle.footnote:[You can find more
2222
information about the supported Java releases
@@ -75,13 +75,20 @@ Below you can find the official compatibility matrix for CIDER.
7575
| 8
7676
| 1.9
7777

78-
| 1.16
78+
| 1.17
7979
| 26.1
8080
| 1.0
8181
| 0.50
8282
| 8
8383
| 1.10
8484

85+
| 1.18
86+
| 27.1
87+
| 1.0
88+
| 0.50
89+
| 8
90+
| 1.10
91+
8592
|===
8693

8794
TIP: You can also check the requirements of a particular CIDER version by inspecting

doc/modules/ROOT/pages/basics/installation.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ release. If you're new to Emacs you might want to go through
1212
https://www.gnu.org/software/emacs/tour/index.html[the guided tour of Emacs]
1313
and the built-in tutorial (just press kbd:[C-h t]).
1414

15-
CIDER officially supports Emacs 26.1+, Java 8+, and Clojure(Script) 1.10+. If
15+
CIDER officially supports Emacs 27.1+, Java 8+, and Clojure(Script) 1.10+. If
1616
you need to work with earlier versions, check
1717
xref:about/compatibility.adoc#compatibility-matrix[compatibility matrix].
1818

0 commit comments

Comments
 (0)