Skip to content

Commit 367f27d

Browse files
committed
3.0.0
1 parent 622c210 commit 367f27d

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 3.0.0 (2021-10-25)
6+
57
#### Changes
68

79
* [(Part of #230)](https://github.com/clojure-emacs/refactor-nrepl/issues/230): Parallelize various functionality

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ release:
4040
# specified in project.clj to provide a login and password to the
4141
# artifact repository.
4242

43+
# CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
4344
deploy: .inline-deps
4445
lein with-profile -user,+$(VERSION),+plugin.mranderson/config deploy clojars
4546

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Be aware that this isn't the case if you connect to an already running REPL proc
2525
Add the following, either in your project's `project.clj`, or in the `:user` profile found at `~/.lein/profiles.clj`:
2626

2727
```clojure
28-
:plugins [[refactor-nrepl "3.0.0-alpha13"]
28+
:plugins [[refactor-nrepl "3.0.0"]
2929
[cider/cider-nrepl "0.25.9"]]
3030
```
3131

@@ -37,7 +37,7 @@ Add the following in `~/.boot/profile.boot`:
3737
(require 'boot.repl)
3838

3939
(swap! boot.repl/*default-dependencies* conj
40-
'[refactor-nrepl "3.0.0-alpha13"]
40+
'[refactor-nrepl "3.0.0"]
4141
'[cider/cider-nrepl "0.25.9"])
4242

4343
(swap! boot.repl/*default-middleware* conj

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject refactor-nrepl "3.0.0-alpha13"
1+
(defproject refactor-nrepl "3.0.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)