Skip to content

Commit adfc1c9

Browse files
committed
Update the required Emacs version in the docs
1 parent 202cf4d commit adfc1c9

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
== Emacs
44

5-
CIDER supports Emacs 25.1+. More generally we try to support the last 3 major Emacs releases
5+
CIDER supports Emacs 26.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
@@ -96,6 +96,20 @@ Below you can find the official compatibility matrix for CIDER.
9696
| 8
9797
| 1.8
9898

99+
| 1.1
100+
| 25.1
101+
| 0.6
102+
| 0.25
103+
| 8
104+
| 1.8
105+
106+
| 1.2
107+
| 26.1
108+
| 0.9
109+
| 0.25
110+
| 8
111+
| 1.8
112+
99113
|===
100114

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

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

Lines changed: 1 addition & 1 deletion
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 25.1+, Java 8+ and Clojure(Script)
15+
CIDER officially supports Emacs 26.1+, Java 8+ and Clojure(Script)
1616
1.8+. CIDER 0.17 (Andalucía) was the final release which supported
1717
Java 7 and Clojure(Script) 1.7.
1818

doc/modules/ROOT/pages/faq.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Yes.
1818

1919
== What are CIDER's installation prerequisites?
2020

21-
CIDER officially supports Emacs 25.1+, Java 8+ and Clojure(Script) 1.8+.
21+
CIDER officially supports Emacs 26.1+, Java 8+ and Clojure(Script) 1.8+.
2222

2323
NOTE: CIDER 0.17 was the final release which supported Java 7 and Clojure(Script) 1.7.
2424

test/cider-util-tests.el

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,11 @@ buffer."
163163
(with-clojure-buffer "(1 2 3|)"
164164
(expect (cider-list-at-point) :to-equal "(1 2 3)")))
165165

166-
;; doesn't work on Emacs 25
167-
(xit "handles leading @ reader macro properly"
166+
(it "handles leading @ reader macro properly"
168167
(with-clojure-buffer "@(1 2 3|)"
169168
(expect (cider-list-at-point) :to-equal "@(1 2 3)")))
170169

171-
;; doesn't work on Emacs 25
172-
(xit "handles leading ' reader macro properly"
170+
(it "handles leading ' reader macro properly"
173171
(with-clojure-buffer "'(1 2 3|)"
174172
(expect (cider-list-at-point) :to-equal "'(1 2 3)")))
175173

0 commit comments

Comments
 (0)