Skip to content

Commit 786c1ef

Browse files
committed
Release 2.4.0
1 parent 8ba3840 commit 786c1ef

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## 2.4.0
6+
47
* [#231](https://github.com/clojure-emacs/refactor-nrepl/issues/231) hotload-dependencies temporarily disabled due to java 10 issues.
58
* [#215](https://github.com/clojure-emacs/refactor-nrepl/issues/215) Support JVM system proxy in mvn artifacts listing
69
* [#198](https://github.com/clojure-emacs/refactor-nrepl/issues/187) Delay middleware loading to speed up initialization.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Be aware that this isn't the case if you connect to an already running REPL proc
2222
Add the following, either in your project's `project.clj`, or in the `:user` profile found at `~/.lein/profiles.clj`:
2323

2424
```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"]]
2727
```
2828

2929
### Adding the middleware via Boot
@@ -34,8 +34,8 @@ Add the following in `~/.boot/profile.boot`:
3434
(require 'boot.repl)
3535

3636
(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"])
3939

4040
(swap! boot.repl/*default-middleware* conj
4141
'refactor-nrepl.middleware/wrap-refactor)

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject refactor-nrepl "2.4.0-SNAPSHOT"
1+
(defproject refactor-nrepl "2.4.0"
22
:description "nREPL middleware to support editor-agnostic refactoring"
33
:url "http://github.com/clojure-emacs/refactor-nrepl"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)