Skip to content

Commit 5b9df3c

Browse files
0.59.0
1 parent 8f1c952 commit 5b9df3c

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 0.59.0 (2026-04-14)
6+
57
* Bump `nrepl` to [1.7.0](https://github.com/nrepl/nrepl/blob/master/CHANGELOG.md#170-2026-04-14).
68
* Bump `tools.reader` to 1.6.0.
79
* Bump `tools.namespace` to 1.5.1.

doc/modules/ROOT/pages/compatibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ given compatibility tuple.
5959
| 1.9
6060
| 1.0.0
6161

62-
| 0.58.0
62+
| 0.59.0
6363
| 8
6464
| 1.10
6565
| 1.0.0

doc/modules/ROOT/pages/usage.adoc

Lines changed: 6 additions & 6 deletions
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.58.0"]]
17+
:plugins [[cider/cider-nrepl "0.59.0"]]
1818
----
1919

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

2222
[source,clojure]
2323
----
24-
{:user {:plugins [[cider/cider-nrepl "0.58.0"]]}}
24+
{:user {:plugins [[cider/cider-nrepl "0.59.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.58.0"]]
33+
:dependencies [[cider/cider-nrepl "0.59.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.58.0"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
66+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.59.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.58.0"}}
76+
cider/cider-nrepl {:mvn/version "0.59.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.58.0"}
81+
cider/cider-nrepl {:mvn/version "0.59.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)