Skip to content

Commit c824a58

Browse files
committedMar 19, 2025·
0.53.0
1 parent 26f72e5 commit c824a58

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed
 

‎CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 0.53.0 (2025-03-19)
6+
57
* Bump `orchard` to [0.31.1](https://github.com/clojure-emacs/orchard/blob/master/CHANGELOG.md#0311-2025-03-19).
68
- Info: recognize printed Java classes/methods and munged Clojure functions in stacktrace outputs.
79
- Add dedicated renderers for exceptions in inspector and debugger.

‎doc/antora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: cider-nrepl
22
title: CIDER nREPL
33
# The version should be in the format major.minor (e.g. 0.28).
44
# Don't include patch in the version (e.g. 0.28.7).
5-
version: ~
5+
version: 0.53
66
nav:
77
- modules/ROOT/nav.adoc

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ given compatibility tuple.
6565
| 1.9
6666
| 1.0.0
6767

68-
| 0.52.1
68+
| 0.53.0
6969
| 8
7070
| 1.10
7171
| 1.0.0

‎doc/modules/ROOT/pages/usage.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ Use the convenient plugin for defaults, either in your project's
1414

1515
[source,clojure]
1616
----
17-
:plugins [[cider/cider-nrepl "0.52.1"]]
17+
:plugins [[cider/cider-nrepl "0.53.0"]]
1818
----
1919

2020
A minimal `profiles.clj` for CIDER would be:
2121

2222
[source,clojure]
2323
----
24-
{:user {:plugins [[cider/cider-nrepl "0.52.1"]]}}
24+
{:user {:plugins [[cider/cider-nrepl "0.53.0"]]}}
2525
----
2626

2727
Or (if you know what you're doing) add `cider-nrepl` to your `:dev
@@ -30,7 +30,7 @@ under `:repl-options`.
3030

3131
[source,clojure]
3232
----
33-
:dependencies [[cider/cider-nrepl "0.52.1"]]
33+
:dependencies [[cider/cider-nrepl "0.53.0"]]
3434
:repl-options {:nrepl-middleware
3535
[cider.nrepl/wrap-apropos
3636
cider.nrepl/wrap-classpath
@@ -63,7 +63,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
6363
with the following "magic" incantation:
6464

6565
----
66-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.52.1"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
66+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.53.0"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
6767
----
6868

6969
There are also two convenient aliases you can employ:
@@ -73,12 +73,12 @@ There are also two convenient aliases you can employ:
7373
{...
7474
:aliases
7575
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
76-
cider/cider-nrepl {:mvn/version "0.52.1"}}
76+
cider/cider-nrepl {:mvn/version "0.53.0"}}
7777
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
7878
7979
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
8080
org.clojure/clojurescript {:mvn/version "1.10.339"}
81-
cider/cider-nrepl {:mvn/version "0.52.1"}
81+
cider/cider-nrepl {:mvn/version "0.53.0"}
8282
cider/piggieback {:mvn/version "0.5.2"}}
8383
:main-opts ["-m" "nrepl.cmdline" "--middleware"
8484
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

0 commit comments

Comments
 (0)
Please sign in to comment.