Skip to content

Commit 6d2d093

Browse files
committed
Release CIDER 1.18 ("Athens")
1 parent cf84f85 commit 6d2d093

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 1.18.0 (2025-04-30)
6+
57
### New features
68

79
- [#3802](https://github.com/clojure-emacs/cider/issues/3802): Inspector analytics.
@@ -12,6 +14,7 @@
1214

1315
### Changes
1416

17+
- [#3782](https://github.com/clojure-emacs/cider/issues/3782): Drop official support for Emacs 26.
1518
- [#3812](https://github.com/clojure-emacs/cider/issues/3812): **(Breaking)** Remove support for Boot.
1619
- [#3793](https://github.com/clojure-emacs/cider/issues/3793): **(Breaking)** Remove features that relied on printed exception parsing:
1720
- `cider-stacktrace-analyze-string` and `cider-stacktrace-analyze-at-point` functions.
@@ -30,7 +33,6 @@
3033
- [#3803](https://github.com/clojure-emacs/cider/pull/3803): Enable dynamic indentation for `clojure-ts-mode`.
3134
- [#3805](https://github.com/clojure-emacs/cider/pull/3805): Profiler: update to latest profiling middleware.
3235
- [#3806](https://github.com/clojure-emacs/cider/pull/3806): Add client info to `clone` op request.
33-
- [#3782](https://github.com/clojure-emacs/cider/issues/3782): Drop official support for Emacs 26.
3436

3537
### Bugs fixed
3638

cider.el

+15-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@
1010
;; Hugo Duncan <[email protected]>
1111
;; Steve Purcell <[email protected]>
1212
;; Maintainer: Bozhidar Batsov <[email protected]>
13-
;; URL: https://www.github.com/clojure-emacs/cider
14-
;; Version: 1.18.0-snapshot
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"))
13+
;;
14+
;; Homepage: https://www.github.com/clojure-emacs/cider
1615
;; Keywords: languages, clojure, cider
16+
;;
17+
;; Version: 1.18.0
18+
;; Package-Requires: (
19+
;; (emacs "27")
20+
;; (clojure-mode "5.19")
21+
;; (parseedn "1.2.1")
22+
;; (queue "0.2")
23+
;; (spinner "1.7")
24+
;; (seq "2.22")
25+
;; (sesman "0.3.2")
26+
;; (transient "0.4.1"))
1727

1828
;; This program is free software: you can redistribute it and/or modify
1929
;; it under the terms of the GNU General Public License as published by
@@ -93,10 +103,10 @@
93103
(require 'sesman)
94104
(require 'package)
95105

96-
(defconst cider-version "1.18.0-snapshot"
106+
(defconst cider-version "1.18.0"
97107
"The current version of CIDER.")
98108

99-
(defconst cider-codename "Cologne"
109+
(defconst cider-codename "Athens"
100110
"Codename used to denote stable releases.")
101111

102112
(defcustom cider-lein-command

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Below you can find the official compatibility matrix for CIDER.
8585
| 1.18
8686
| 27.1
8787
| 1.0
88-
| 0.50
88+
| 0.55
8989
| 8
9090
| 1.10
9191

0 commit comments

Comments
 (0)