Skip to content

Commit 367de04

Browse files
0.55.1
1 parent 9153326 commit 367de04

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 0.55.1 (2025-04-14)
6+
7+
* [#931](https://github.com/clojure-emacs/cider-nrepl/pull/931): Redesign and optimize track-state middleware.
8+
59
## 0.55.0 (2025-04-10)
610

711
* Bump `orchard` to [0.33.0](https://github.com/clojure-emacs/orchard/blob/master/CHANGELOG.md#0330-2025-04-08).

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.55.0
68+
| 0.55.1
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.55.0"]]
17+
:plugins [[cider/cider-nrepl "0.55.1"]]
1818
----
1919

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

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