Skip to content

Commit 6833bb8

Browse files
committed
Require Emacs 27
1 parent 9c06132 commit 6833bb8

File tree

3 files changed

+4
-14
lines changed

3 files changed

+4
-14
lines changed

.circleci/config.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,6 @@ commands:
5151
command: eldev -dtT compile --warnings-as-errors
5252

5353
jobs:
54-
test-ubuntu-emacs-26:
55-
docker:
56-
- image: silex/emacs:26-ci
57-
entrypoint: bash
58-
steps:
59-
- setup
60-
- test
61-
6254
test-ubuntu-emacs-27:
6355
docker:
6456
- image: silex/emacs:27-ci
@@ -111,7 +103,6 @@ workflows:
111103
version: 2
112104
ci-test-matrix:
113105
jobs:
114-
- test-ubuntu-emacs-26
115106
- test-ubuntu-emacs-27
116107
- test-ubuntu-emacs-28
117108
- test-ubuntu-emacs-master

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
* [#204](https://github.com/clojure-emacs/inf-clojure/issues/204): Scroll repl buffer on insert commands
88
* [#208](https://github.com/clojure-emacs/inf-clojure/pull/208) Display message after setting repl.
99
* [#210](https://github.com/clojure-emacs/inf-clojure/pull/210) Include `inf-clojure-socket-repl` to create a socket REPL and connect to it from inside Emacs.
10-
- [#217](https://github.com/clojure-emacs/inf-clojure/pull/217): Add `clojure-ts-mode` support.
10+
* [#217](https://github.com/clojure-emacs/inf-clojure/pull/217): Add `clojure-ts-mode` support.
11+
* Require Emacs 27.
1112

1213
## 3.2.1 (2022-07-22)
1314

inf-clojure.el

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
;; URL: http://github.com/clojure-emacs/inf-clojure
99
;; Keywords: processes, comint, clojure
1010
;; Version: 3.3.0-snapshot
11-
;; Package-Requires: ((emacs "26.2") (clojure-mode "5.11"))
11+
;; Package-Requires: ((emacs "27") (clojure-mode "5.11"))
1212

1313
;; This file is not part of GNU Emacs.
1414

@@ -332,9 +332,7 @@ See http://blog.jorgenschaefer.de/2014/05/race-conditions-in-emacs-process-filte
332332
:link '(emacs-commentary-link :tag "Commentary" "inf-clojure"))
333333

334334
(defconst inf-clojure-version
335-
(or (if (fboundp 'package-get-version)
336-
(package-get-version))
337-
"3.2.1")
335+
(package-get-version)
338336
"The current version of `inf-clojure'.")
339337

340338
(defcustom inf-clojure-prompt-read-only t

0 commit comments

Comments
 (0)