Skip to content

Commit 00a8fa7

Browse files
committed
Require cider-nrepl 0.22-beta13
1 parent f711d31 commit 00a8fa7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cider-client.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ The result entries are relative to the classpath."
637637
(cider-ensure-op-supported "fn-refs")
638638
(thread-first `("op" "fn-refs"
639639
"ns" ,ns
640-
"symbol" ,sym)
640+
"sym" ,sym)
641641
(cider-nrepl-send-sync-request)
642642
(nrepl-dict-get "fn-refs")))
643643

@@ -646,7 +646,7 @@ The result entries are relative to the classpath."
646646
(cider-ensure-op-supported "fn-deps")
647647
(thread-first `("op" "fn-deps"
648648
"ns" ,ns
649-
"symbol" ,sym)
649+
"sym" ,sym)
650650
(cider-nrepl-send-sync-request)
651651
(nrepl-dict-get "fn-deps")))
652652

cider-clojuredocs.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"Perform nREPL \"resource\" op with NS and SYM."
4444
(thread-first `("op" "clojuredocs-lookup"
4545
"ns" ,ns
46-
"symbol" ,sym)
46+
"sym" ,sym)
4747
(cider-nrepl-send-sync-request)
4848
(nrepl-dict-get "clojuredocs")))
4949

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ Elements of the list are artifact name and list of exclusions to apply for the a
404404
(defconst cider-latest-clojure-version "1.10.0"
405405
"Latest supported version of Clojure.")
406406

407-
(defconst cider-required-middleware-version "0.22.0-beta12"
407+
(defconst cider-required-middleware-version "0.22.0-beta13"
408408
"The CIDER nREPL version that's known to work properly with CIDER.")
409409

410410
(defcustom cider-jack-in-auto-inject-clojure nil

0 commit comments

Comments
 (0)