Skip to content

Commit 7ba5d80

Browse files
committed
Use Enrich 1.15.0
1 parent 2ac806d commit 7ba5d80

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ returned by this function does not include keyword arguments."
584584
(let ((plugins (if cider-enrich-classpath
585585
(append cider-jack-in-lein-plugins
586586
`(("cider/cider-nrepl" ,cider-injected-middleware-version)
587-
("mx.cider/lein-enrich-classpath" "1.14.0")))
587+
("mx.cider/lein-enrich-classpath" "1.15.0")))
588588
(append cider-jack-in-lein-plugins
589589
`(("cider/cider-nrepl" ,cider-injected-middleware-version))))))
590590
(thread-last

clojure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ else
2828
cd "$there"
2929

3030
# enrich-classpath will emit a command starting by "clojure", or print a stacktrace:
31-
output=$(2>&1 "$clojure" -Sforce -Srepro -J-XX:-OmitStackTraceInFastThrow -J-Dclojure.main.report=stderr -Sdeps '{:deps {mx.cider/tools.deps.enrich-classpath {:mvn/version "1.14.0"}}}' -M -m cider.enrich-classpath.clojure "$clojure" "$here" "true" "$@")
31+
output=$(2>&1 "$clojure" -Sforce -Srepro -J-XX:-OmitStackTraceInFastThrow -J-Dclojure.main.report=stderr -Sdeps '{:deps {mx.cider/tools.deps.enrich-classpath {:mvn/version "1.15.0"}}}' -M -m cider.enrich-classpath.clojure "$clojure" "$here" "true" "$@")
3232
cmd=$(tail -n1 <(echo "$output"))
3333

3434
cd "$here"

test/cider-tests.el

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
" -- update-in :plugins conj "
157157
(shell-quote-argument "[cider/cider-nrepl \"0.36.0\"]")
158158
" -- update-in :plugins conj "
159-
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.14.0\"]")
159+
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.15.0\"]")
160160
" -- update-in :middleware conj cider.enrich-classpath.plugin-v2/middleware"
161161
" -- repl :headless")))
162162

@@ -169,7 +169,7 @@
169169
" -- update-in :plugins conj "
170170
(shell-quote-argument "[cider/cider-nrepl \"0.36.0\"]")
171171
" -- update-in :plugins conj "
172-
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.14.0\"]")
172+
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.15.0\"]")
173173
" -- update-in :middleware conj cider.enrich-classpath.plugin-v2/middleware"
174174
" -- repl :headless")))
175175

@@ -181,7 +181,7 @@
181181
" -- update-in :plugins conj "
182182
(shell-quote-argument "[cider/cider-nrepl \"0.36.0\"]")
183183
" -- update-in :plugins conj "
184-
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.14.0\"]")
184+
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.15.0\"]")
185185
" -- update-in :middleware conj cider.enrich-classpath.plugin-v2/middleware"
186186
" -- repl :headless")))
187187

@@ -220,7 +220,7 @@
220220
" -- update-in :plugins conj "
221221
(shell-quote-argument "[cider/cider-nrepl \"0.36.0\"]")
222222
" -- update-in :plugins conj "
223-
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.14.0\"]")
223+
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.15.0\"]")
224224
" -- update-in :middleware conj cider.enrich-classpath.plugin-v2/middleware"
225225
" -- repl :headless")))
226226

@@ -255,7 +255,7 @@
255255
" -- update-in :plugins conj "
256256
(shell-quote-argument "[cider/cider-nrepl \"0.36.0\"]")
257257
" -- update-in :plugins conj "
258-
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.14.0\"]")
258+
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.15.0\"]")
259259
" -- update-in :middleware conj cider.enrich-classpath.plugin-v2/middleware"
260260
" -- repl :headless")))
261261
(it "can concat in a boot project"
@@ -324,7 +324,7 @@
324324
(spy-on 'cider-jack-in-normalized-lein-plugins
325325
:and-return-value '(("refactor-nrepl" "2.0.0")
326326
("cider/cider-nrepl" "0.36.0")
327-
("mx.cider/lein-enrich-classpath" "1.14.0")))
327+
("mx.cider/lein-enrich-classpath" "1.15.0")))
328328
(setq-local cider-jack-in-dependencies-exclusions '())
329329
(setq-local cider-enrich-classpath t))
330330
(it "uses them in a lein project"
@@ -336,7 +336,7 @@
336336
" -- update-in :plugins conj "
337337
(shell-quote-argument "[cider/cider-nrepl \"0.36.0\"]")
338338
" -- update-in :plugins conj "
339-
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.14.0\"]")
339+
(shell-quote-argument "[mx.cider/lein-enrich-classpath \"1.15.0\"]")
340340
" -- update-in :middleware conj cider.enrich-classpath.plugin-v2/middleware"
341341
" -- repl :headless"))))
342342

0 commit comments

Comments
 (0)