@@ -126,7 +126,7 @@ middleware](https://github.com/clojure-emacs/cider-nrepl). Starting
126
126
with version 0.11, ` cider-jack-in ` (<kbd >C-c C-x (C-)j (C-)j</kbd >)
127
127
automatically injects this middle and other dependencies as required.
128
128
129
- !!! Note
129
+ !!! Note
130
130
In the past, if you were setting up CIDER, you might have had to
131
131
modify ` profiles.clj ` or ` profile.boot ` . CIDER now handles
132
132
everything automatically and you don't need to add anything
@@ -152,6 +152,11 @@ section).
152
152
153
153
#### Using Leiningen
154
154
155
+ !!! Note
156
+
157
+ It's highly recommended to use Leiningen 2.8.3 or newer, as 2.8.3 is the first
158
+ release to ship with nREPL 0.5.
159
+
155
160
Use the convenient plugin for defaults, either in your project's
156
161
` project.clj ` file or in the : repl profile in ` ~/.lein/profiles.clj ` .
157
162
@@ -162,7 +167,7 @@ Use the convenient plugin for defaults, either in your project's
162
167
A minimal ` profiles.clj ` for CIDER would be:
163
168
164
169
``` clojure
165
- {:repl {:plugins [[cider/cider-nrepl " 0.18 .0" ]]}}
170
+ {:repl {:plugins [[cider/cider-nrepl " 0.19 .0" ]]}}
166
171
```
167
172
168
173
!!! warning
@@ -185,7 +190,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
185
190
(require 'boot.repl)
186
191
187
192
(swap! boot.repl/*default-dependencies*
188
- concat '[[cider/cider-nrepl " 0.18 .0" ]])
193
+ concat '[[cider/cider-nrepl " 0.19 .0" ]])
189
194
190
195
(swap! boot.repl/*default-middleware*
191
196
conj 'cider.nrepl/cider-middleware)
@@ -220,4 +225,3 @@ It goes without saying that your project should depend on `cider-nrepl`.
220
225
with a recent version of CIDER. You can check the required version
221
226
of cider-nrepl for your version of CIDER by looking at
222
227
`cider-required-middleware-version`.
223
-
0 commit comments