Skip to content

Commit a938ada

Browse files
committed
Upgrade cider-nrepl version
1 parent a238dee commit a938ada

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ The method from the [Quickstart section](#Quickstart) utilizes the so-called emb
6060
option in your VSCode settings globally or per-project and connect manually to whichever REPL instance you want by "Clojure: Connect to a running nREPL" command. Note, that in order to make the autocompletion, go to definition, and formatting functionality work you have to write necessary dependencies in your `profiles.clj`. Put the following content to your `~/.lein/profiles.clj` for macOS and Linux:
6161

6262
```clojure
63-
{:user {:plugins [[cider/cider-nrepl "0.15.1"]]
64-
:dependencies [[org.clojure/tools.nrepl "0.2.12"]
63+
{:user {:plugins [[cider/cider-nrepl "0.20.0"]]
64+
:dependencies [[org.clojure/tools.nrepl "0.2.13"]
6565
[cljfmt "0.5.7"]]}}
6666
```
6767

src/nreplController.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const LEIN_ARGS: string[] = [
1010
'update-in',
1111
':dependencies',
1212
'conj',
13-
'[org.clojure/tools.nrepl "0.2.12" :exclusions [org.clojure/clojure]]',
13+
'[org.clojure/tools.nrepl "0.2.13" :exclusions [org.clojure/clojure]]',
1414
'--',
1515
'update-in',
1616
':dependencies',
@@ -20,7 +20,7 @@ const LEIN_ARGS: string[] = [
2020
'update-in',
2121
':plugins',
2222
'conj',
23-
'[cider/cider-nrepl "0.15.1"]',
23+
'[cider/cider-nrepl "0.20.0"]',
2424
'--',
2525
'repl',
2626
':headless'

0 commit comments

Comments
 (0)