Skip to content

Commit 7afa8ac

Browse files
authored
Use enrich-classpath 1.9.0 (#3151)
Fixes #3136
1 parent 83f18a9 commit 7afa8ac

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ returned by this function does not include keyword arguments."
483483
(let ((plugins (if cider-enrich-classpath
484484
(append cider-jack-in-lein-plugins
485485
`(("cider/cider-nrepl" ,cider-injected-middleware-version)
486-
("mx.cider/enrich-classpath" "1.8.0")))
486+
("mx.cider/enrich-classpath" "1.9.0")))
487487
(append cider-jack-in-lein-plugins
488488
`(("cider/cider-nrepl" ,cider-injected-middleware-version))))))
489489
(thread-last plugins

doc/modules/ROOT/pages/basics/middleware_setup.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ A minimal `profiles.clj` for CIDER would be:
4545

4646
[source,clojure]
4747
----
48-
{:repl {:plugins [[cider/cider-nrepl "0.27.2"]
49-
[mx.cider/enrich-classpath "1.8.0"]]}}
48+
{:repl {:plugins [[cider/cider-nrepl "0.28.2"]
49+
[mx.cider/enrich-classpath "1.9.0"]]}}
5050
----
5151

5252
WARNING: Be careful not to place this in the `:user` profile, as this way CIDER's

test/cider-tests.el

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
" -- update-in :plugins conj "
125125
(shell-quote-argument "[cider/cider-nrepl \"0.28.1\"]")
126126
" -- update-in :plugins conj "
127-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.8.0\"]")
127+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.9.0\"]")
128128
" -- update-in :middleware conj cider.enrich-classpath/middleware"
129129
" -- repl :headless")))
130130

@@ -137,7 +137,7 @@
137137
" -- update-in :plugins conj "
138138
(shell-quote-argument "[cider/cider-nrepl \"0.28.1\"]")
139139
" -- update-in :plugins conj "
140-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.8.0\"]")
140+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.9.0\"]")
141141
" -- update-in :middleware conj cider.enrich-classpath/middleware"
142142
" -- repl :headless")))
143143

@@ -149,7 +149,7 @@
149149
" -- update-in :plugins conj "
150150
(shell-quote-argument "[cider/cider-nrepl \"0.28.1\"]")
151151
" -- update-in :plugins conj "
152-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.8.0\"]")
152+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.9.0\"]")
153153
" -- update-in :middleware conj cider.enrich-classpath/middleware"
154154
" -- repl :headless")))
155155

@@ -185,7 +185,7 @@
185185
" -- update-in :plugins conj "
186186
(shell-quote-argument "[cider/cider-nrepl \"0.28.1\"]")
187187
" -- update-in :plugins conj "
188-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.8.0\"]")
188+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.9.0\"]")
189189
" -- update-in :middleware conj cider.enrich-classpath/middleware"
190190
" -- repl :headless")))
191191

@@ -219,7 +219,7 @@
219219
" -- update-in :plugins conj "
220220
(shell-quote-argument "[cider/cider-nrepl \"0.28.1\"]")
221221
" -- update-in :plugins conj "
222-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.8.0\"]")
222+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.9.0\"]")
223223
" -- update-in :middleware conj cider.enrich-classpath/middleware"
224224
" -- repl :headless")))
225225
(it "can concat in a boot project"
@@ -285,7 +285,7 @@
285285
(spy-on 'cider-jack-in-normalized-lein-plugins
286286
:and-return-value '(("refactor-nrepl" "2.0.0")
287287
("cider/cider-nrepl" "0.28.1")
288-
("mx.cider/enrich-classpath" "1.8.0")))
288+
("mx.cider/enrich-classpath" "1.9.0")))
289289
(setq-local cider-jack-in-dependencies-exclusions '())
290290
(setq-local cider-enrich-classpath t))
291291
(it "uses them in a lein project"
@@ -297,7 +297,7 @@
297297
" -- update-in :plugins conj "
298298
(shell-quote-argument "[cider/cider-nrepl \"0.28.1\"]")
299299
" -- update-in :plugins conj "
300-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.8.0\"]")
300+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.9.0\"]")
301301
" -- update-in :middleware conj cider.enrich-classpath/middleware"
302302
" -- repl :headless"))))
303303

0 commit comments

Comments
 (0)