Skip to content

Commit 07154e3

Browse files
0.55.4
1 parent a199df5 commit 07154e3

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 0.55.4 (2025-04-26)
6+
7+
* Bump `orchard` to [0.34.2](https://github.com/clojure-emacs/orchard/blob/master/CHANGELOG.md#0342-2025-04-26).
8+
59
## 0.55.3 (2025-04-24)
610

711
* [#933](https://github.com/clojure-emacs/cider-nrepl/pull/933): Add the `cider-inspector-print-current-value` command to print the current value of the inspector.

doc/modules/ROOT/pages/compatibility.adoc

Lines changed: 1 addition & 1 deletion
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.3
68+
| 0.55.4
6969
| 8
7070
| 1.10
7171
| 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.55.3"]]
17+
:plugins [[cider/cider-nrepl "0.55.4"]]
1818
----
1919

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

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

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
:url "http://www.eclipse.org/legal/epl-v10.html"}
2323
:scm {:name "git" :url "https://github.com/clojure-emacs/cider-nrepl"}
2424
:dependencies [[nrepl/nrepl "1.3.1" :exclusions [org.clojure/clojure]]
25-
[cider/orchard "0.34.1" :exclusions [org.clojure/clojure]]
25+
[cider/orchard "0.34.2" :exclusions [org.clojure/clojure]]
2626
^:inline-dep [fipp ~fipp-version] ; can be removed in unresolved-tree mode
2727
^:inline-dep [compliment "0.7.0"]
2828
^:inline-dep [org.rksm/suitable "0.6.2" :exclusions [org.clojure/clojure

src/cider/nrepl/middleware/track_state.clj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -287,10 +287,6 @@
287287

288288
;;; State management
289289

290-
(defn- transport-send [transport msg]
291-
;; Only exists to be rebindable during testing.
292-
(transport/send transport msg))
293-
294290
(defn calculate-changed-project-state-response
295291
"Calculate changes in project state since we lasst notified the client. Response
296292
is a map:
@@ -338,7 +334,7 @@
338334
(.send transport response)
339335
(when (contains? status :done)
340336
(future
341-
(transport-send transport (calculate-changed-project-state-response msg)))))))
337+
(transport/send transport (calculate-changed-project-state-response msg)))))))
342338

343339
(defn handle-tracker [handler {:keys [op session] :as msg}]
344340
(cond

0 commit comments

Comments
 (0)