Skip to content

Commit 29f1928

Browse files
committed
Bump enrich-classpath
Delivers clojure-emacs/enrich-classpath@b855566 which makes sure e.g. `lein-doo` won't pull an overly old version of Clojure, which would make Fipp fail.
1 parent 486990e commit 29f1928

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
@@ -519,7 +519,7 @@ where it doesn't make sense."
519519
(let* ((corpus (if (and cider-enrich-classpath
520520
(eq project-type 'lein))
521521
(append cider-jack-in-lein-plugins
522-
'(("mx.cider/enrich-classpath" "1.5.0")))
522+
'(("mx.cider/enrich-classpath" "1.5.1")))
523523
cider-jack-in-lein-plugins)))
524524
(thread-last corpus
525525
(seq-filter

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ A minimal `profiles.clj` for CIDER would be:
4040
[source,clojure]
4141
----
4242
{:repl {:plugins [[cider/cider-nrepl "0.27.2"]
43-
[mx.cider/enrich-classpath "1.5.0"]]}}
43+
[mx.cider/enrich-classpath "1.5.1"]]}}
4444
----
4545

4646
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
@@ -123,7 +123,7 @@
123123
" -- update-in :plugins conj "
124124
(shell-quote-argument "[cider/cider-nrepl \"0.10.0-SNAPSHOT\"]")
125125
" -- update-in :plugins conj "
126-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.0\"]")
126+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.1\"]")
127127
" -- update-in :middleware conj cider.enrich-classpath/middleware"
128128
" -- repl :headless")))
129129

@@ -136,7 +136,7 @@
136136
" -- update-in :plugins conj "
137137
(shell-quote-argument "[cider/cider-nrepl \"0.10.0-SNAPSHOT\"]")
138138
" -- update-in :plugins conj "
139-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.0\"]")
139+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.1\"]")
140140
" -- update-in :middleware conj cider.enrich-classpath/middleware"
141141
" -- repl :headless")))
142142

@@ -148,7 +148,7 @@
148148
" -- update-in :plugins conj "
149149
(shell-quote-argument "[cider/cider-nrepl \"0.10.0-SNAPSHOT\"]")
150150
" -- update-in :plugins conj "
151-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.0\"]")
151+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.1\"]")
152152
" -- update-in :middleware conj cider.enrich-classpath/middleware"
153153
" -- repl :headless")))
154154

@@ -183,7 +183,7 @@
183183
" -- update-in :plugins conj "
184184
(shell-quote-argument "[cider/cider-nrepl \"0.11.0\"]")
185185
" -- update-in :plugins conj "
186-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.0\"]")
186+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.1\"]")
187187
" -- update-in :middleware conj cider.enrich-classpath/middleware"
188188
" -- repl :headless")))
189189

@@ -216,7 +216,7 @@
216216
" -- update-in :plugins conj "
217217
(shell-quote-argument "[cider/cider-nrepl \"0.11.0\"]")
218218
" -- update-in :plugins conj "
219-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.0\"]")
219+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.1\"]")
220220
" -- update-in :middleware conj cider.enrich-classpath/middleware"
221221
" -- repl :headless")))
222222
(it "can concat in a boot project"
@@ -281,7 +281,7 @@
281281
(spy-on 'cider-jack-in-normalized-lein-plugins
282282
:and-return-value '(("refactor-nrepl" "2.0.0")
283283
("cider/cider-nrepl" "0.11.0")
284-
("mx.cider/enrich-classpath" "1.5.0")))
284+
("mx.cider/enrich-classpath" "1.5.1")))
285285
(setq-local cider-jack-in-dependencies-exclusions '()))
286286
(it "uses them in a lein project"
287287
(expect (cider-inject-jack-in-dependencies "" "repl :headless" 'lein)
@@ -292,7 +292,7 @@
292292
" -- update-in :plugins conj "
293293
(shell-quote-argument "[cider/cider-nrepl \"0.11.0\"]")
294294
" -- update-in :plugins conj "
295-
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.0\"]")
295+
(shell-quote-argument "[mx.cider/enrich-classpath \"1.5.1\"]")
296296
" -- update-in :middleware conj cider.enrich-classpath/middleware"
297297
" -- repl :headless"))))
298298

0 commit comments

Comments
 (0)