We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent622c210 commit367f27dCopy full SHA for 367f27d
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
##Unreleased
4
5
+##3.0.0 (2021-10-25)
6
+
7
####Changes
8
9
*[(Part of#230)](https://github.com/clojure-emacs/refactor-nrepl/issues/230): Parallelize various functionality
Makefile
@@ -40,6 +40,7 @@ release:
40
# specified in project.clj to provide a login and password to the
41
# artifact repository.
42
43
+# CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
44
deploy: .inline-deps
45
lein with-profile -user,+$(VERSION),+plugin.mranderson/config deploy clojars
46
README.md
@@ -25,7 +25,7 @@ Be aware that this isn't the case if you connect to an already running REPL proc
25
Add the following, either in your project's`project.clj`, or in the`:user` profile found at`~/.lein/profiles.clj`:
26
27
```clojure
28
-:plugins [[refactor-nrepl"3.0.0-alpha13"]
+:plugins [[refactor-nrepl"3.0.0"]
29
[cider/cider-nrepl"0.25.9"]]
30
```
31
@@ -37,7 +37,7 @@ Add the following in `~/.boot/profile.boot`:
37
(require 'boot.repl)
38
39
(swap! boot.repl/*default-dependencies* conj
- '[refactor-nrepl"3.0.0-alpha13"]
+ '[refactor-nrepl"3.0.0"]
'[cider/cider-nrepl"0.25.9"])
(swap! boot.repl/*default-middleware* conj
project.clj
@@ -1,4 +1,4 @@
1
-(defprojectrefactor-nrepl"3.0.0-alpha13"
+(defprojectrefactor-nrepl"3.0.0"
:description"nREPL middleware to support editor-agnostic refactoring"
:url"http://github.com/clojure-emacs/refactor-nrepl"
:license {:name"Eclipse Public License"