Skip to content

Commit 98fcfc3

Browse files
committed
Release 2.5.1
1 parent c746844 commit 98fcfc3

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22

33
## Unreleased
44

5+
## 2.5.1 (2021-02-16)
6+
57
### Bugs fixed
68

79
* [#284](https://github.com/clojure-emacs/refactor-nrepl/issues/284): Don't truncate the artifacts cache.
810

11+
### Changes
12+
13+
* Updated all deps.
14+
915
## 2.5.0 (2020-02-29)
1016

1117
### New features

README.md

Lines changed: 6 additions & 6 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.5.0"]
26-
[cider/cider-nrepl "0.24.0"]]
25+
:plugins [[refactor-nrepl "2.5.1"]
26+
[cider/cider-nrepl "0.25.9"]]
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.5.0"]
38-
'[cider/cider-nrepl "0.24.0"])
37+
'[refactor-nrepl "2.5.1"]
38+
'[cider/cider-nrepl "0.25.9"])
3939

4040
(swap! boot.repl/*default-middleware* conj
4141
'refactor-nrepl.middleware/wrap-refactor)
@@ -52,7 +52,7 @@ project, in order to offer various refactorings.
5252

5353
Most likely you're already in an environment with a nREPL client available, so you don't have to worry about anything except sending an receiving messages:
5454

55-
```cljs
55+
```clj
5656
=> (require '[nrepl.core :as repl])
5757
nil
5858
=> (with-open [conn (repl/connect :port 59258)]
@@ -360,7 +360,7 @@ An extensive changelog is available [here](CHANGELOG.md).
360360

361361
## License
362362

363-
Copyright © 2013-2020 Benedek Fazekas, Magnar Sveen, Alex Baranosky, Lars Andersen, Bozhidar Batsov
363+
Copyright © 2013-2021 Benedek Fazekas, Magnar Sveen, Alex Baranosky, Lars Andersen, Bozhidar Batsov
364364

365365
Distributed under the Eclipse Public License, the same as Clojure.
366366

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.5.0"
1+
(defproject refactor-nrepl "2.5.1"
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)