@@ -126,7 +126,7 @@ middleware](https://github.com/clojure-emacs/cider-nrepl). Starting
126126with version 0.11, ` cider-jack-in ` (<kbd >C-c C-x (C-)j (C-)j</kbd >)
127127automatically injects this middle and other dependencies as required.
128128
129- !!! Note
129+ !!! Note
130130 In the past, if you were setting up CIDER, you might have had to
131131 modify ` profiles.clj ` or ` profile.boot ` . CIDER now handles
132132 everything automatically and you don't need to add anything
@@ -152,6 +152,11 @@ section).
152152
153153#### Using Leiningen
154154
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+
155160Use the convenient plugin for defaults, either in your project's
156161` project.clj ` file or in the : repl profile in ` ~/.lein/profiles.clj ` .
157162
@@ -162,7 +167,7 @@ Use the convenient plugin for defaults, either in your project's
162167A minimal ` profiles.clj ` for CIDER would be:
163168
164169``` clojure
165- {:repl {:plugins [[cider/cider-nrepl " 0.18 .0" ]]}}
170+ {:repl {:plugins [[cider/cider-nrepl " 0.19 .0" ]]}}
166171```
167172
168173!!! warning
@@ -185,7 +190,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
185190(require 'boot.repl)
186191
187192(swap! boot.repl/*default-dependencies*
188- concat '[[cider/cider-nrepl " 0.18 .0" ]])
193+ concat '[[cider/cider-nrepl " 0.19 .0" ]])
189194
190195(swap! boot.repl/*default-middleware*
191196 conj 'cider.nrepl/cider-middleware)
@@ -220,4 +225,3 @@ It goes without saying that your project should depend on `cider-nrepl`.
220225 with a recent version of CIDER. You can check the required version
221226 of cider-nrepl for your version of CIDER by looking at
222227 `cider-required-middleware-version`.
223-
0 commit comments