Skip to content

Commit 65ab78c

Browse files
committed
1.9.0
1 parent 966cae4 commit 65ab78c

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
### Changes
1111

1212
- [#3546](https://github.com/clojure-emacs/cider/issues/3546): Inspector: render Java items using `java-mode` syntax coloring.
13+
- [#3521](https://github.com/clojure-emacs/cider/issues/3521): Expand `cider-clojure-compilation-regexp` to also match e.g. `Unexpected error (ExceptionInfo) macroexpanding defmulti at (src/ns.clj:1:1).`.
14+
- Remove module info from the [CIDER error overlay](https://docs.cider.mx/cider/usage/dealing_with_errors.html#configuration).
15+
- Example string that is now trimmed away: `(java.lang.Long is in module java.base of loader 'bootstrap'; clojure.lang.IObj is in unnamed module of loader 'app')`
16+
- [#3522](https://github.com/clojure-emacs/cider/issues/3522): Introduce a new possible value for [`cider-use-overlays`](https://docs.cider.mx/cider/usage/code_evaluation.html#overlays): `errors-only`.
17+
- If specified, only errors will result in an overlay being shown.
18+
- [#3527](https://github.com/clojure-emacs/cider/issues/3527): Preserve the font size as one navigates through the CIDER inspector.
19+
- [#3525](https://github.com/clojure-emacs/cider/issues/3525): Introduce [`cider-inline-error-message-function`](https://docs.cider.mx/cider/usage/code_evaluation.html#overlays) customization option.
1320
- [#3528](https://github.com/clojure-emacs/cider/issues/3528): Bump the injected `cider-nrepl` to [0.41.0](https://github.com/clojure-emacs/cider-nrepl/blob/v0.41.0/CHANGELOG.md#0410-2023-10-24).
1421
- Updates [Orchard](https://github.com/clojure-emacs/orchard/blob/v0.17.0/CHANGELOG.md#0170-2023-10-24), providing misc presentational improvements for the CIDER Inspector.
1522

@@ -21,13 +28,6 @@
2128

2229
### Changes
2330

24-
- [#3521](https://github.com/clojure-emacs/cider/issues/3521): Expand `cider-clojure-compilation-regexp` to also match e.g. `Unexpected error (ExceptionInfo) macroexpanding defmulti at (src/ns.clj:1:1).`.
25-
- Remove module info from the [CIDER error overlay](https://docs.cider.mx/cider/usage/dealing_with_errors.html#configuration).
26-
- Example string that is now trimmed away: `(java.lang.Long is in module java.base of loader 'bootstrap'; clojure.lang.IObj is in unnamed module of loader 'app')`
27-
- [#3522](https://github.com/clojure-emacs/cider/issues/3522): Introduce a new possible value for [`cider-use-overlays`](https://docs.cider.mx/cider/usage/code_evaluation.html#overlays): `errors-only`.
28-
- If specified, only errors will result in an overlay being shown.
29-
- [#3527](https://github.com/clojure-emacs/cider/issues/3527): Preserve the font size as one navigates through the CIDER inspector.
30-
- [#3525](https://github.com/clojure-emacs/cider/issues/3525): Introduce [`cider-inline-error-message-function`](https://docs.cider.mx/cider/usage/code_evaluation.html#overlays) customization option.
3131
- [#2903](https://github.com/clojure-emacs/cider/issues/2903): Avoid `No comment syntax is defined` prompts.
3232
- Bump the `clojure-mode` required version to [5.18.0](https://github.com/clojure-emacs/clojure-mode/blob/v5.18.0/CHANGELOG.md#5180-2023-10-18)
3333

cider-inspector.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@ current-namespace."
338338
(let ((response (cider-sync-request:inspect-tap-current-val)))
339339
(nrepl-dbind-response response (value err)
340340
(if value
341-
(message "Successully tapped the current Inspector value")
342-
(error"Could not tap the current Inspector value: %s" err))))
341+
(message "Successfully tapped the current Inspector value")
342+
(error "Could not tap the current Inspector value: %s" err))))
343343
(user-error "No CIDER session found")))
344344

345345
;; nREPL interactions

cider.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
;; Steve Purcell <[email protected]>
1212
;; Maintainer: Bozhidar Batsov <[email protected]>
1313
;; URL: http://www.github.com/clojure-emacs/cider
14-
;; Version: 1.8.3
14+
;; Version: 1.9.0
1515
;; Package-Requires: ((emacs "26") (clojure-mode "5.18.0") (parseedn "1.2.0") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -93,10 +93,10 @@
9393
(require 'sesman)
9494
(require 'package)
9595

96-
(defconst cider-version "1.8.4-snapshot"
96+
(defconst cider-version "1.9.0"
9797
"The current version of CIDER.")
9898

99-
(defconst cider-codename "Geneva"
99+
(defconst cider-codename "Barcelona"
100100
"Codename used to denote stable releases.")
101101

102102
(defcustom cider-lein-command

doc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: cider
22
title: CIDER
33
# We always provide version without patch here (e.g. 1.1),
44
# as patch versions should not appear in the docs.
5-
version: ~
5+
version: 1.9
66
nav:
77
- modules/ROOT/nav.adoc

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,20 @@ Below you can find the official compatibility matrix for CIDER.
148148
| 8
149149
| 1.8
150150

151+
| 1.8
152+
| 26.1
153+
| 1.0
154+
| 0.40
155+
| 8
156+
| 1.8
157+
158+
| 1.9
159+
| 26.1
160+
| 1.0
161+
| 0.41
162+
| 8
163+
| 1.8
164+
151165
|===
152166

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

0 commit comments

Comments
 (0)