File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## Unreleased
4
+
5
+ ## 2.4.0
6
+
4
7
* [ #231 ] ( https://github.com/clojure-emacs/refactor-nrepl/issues/231 ) hotload-dependencies temporarily disabled due to java 10 issues.
5
8
* [ #215 ] ( https://github.com/clojure-emacs/refactor-nrepl/issues/215 ) Support JVM system proxy in mvn artifacts listing
6
9
* [ #198 ] ( https://github.com/clojure-emacs/refactor-nrepl/issues/187 ) Delay middleware loading to speed up initialization.
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ Be aware that this isn't the case if you connect to an already running REPL proc
22
22
Add the following, either in your project's ` project.clj ` , or in the ` :user ` profile found at ` ~/.lein/profiles.clj ` :
23
23
24
24
``` clojure
25
- :plugins [[refactor-nrepl " 2.3.1 " ]
26
- [cider/cider-nrepl " 0.14 .0" ]]
25
+ :plugins [[refactor-nrepl " 2.4.0 " ]
26
+ [cider/cider-nrepl " 0.18 .0" ]]
27
27
```
28
28
29
29
### Adding the middleware via Boot
@@ -34,8 +34,8 @@ Add the following in `~/.boot/profile.boot`:
34
34
(require 'boot.repl)
35
35
36
36
(swap! boot.repl/*default-dependencies* conj
37
- '[refactor-nrepl " 2.3.1 " ]
38
- '[cider/cider-nrepl " 0.14 .0" ])
37
+ '[refactor-nrepl " 2.4.0 " ]
38
+ '[cider/cider-nrepl " 0.18 .0" ])
39
39
40
40
(swap! boot.repl/*default-middleware* conj
41
41
'refactor-nrepl.middleware/wrap-refactor)
Original file line number Diff line number Diff line change 1
- (defproject refactor-nrepl " 2.4.0-SNAPSHOT "
1
+ (defproject refactor-nrepl " 2.4.0"
2
2
:description " nREPL middleware to support editor-agnostic refactoring"
3
3
:url " http://github.com/clojure-emacs/refactor-nrepl"
4
4
:license {:name " Eclipse Public License"
You can’t perform that action at this time.
0 commit comments