Skip to content

Commit

Permalink
Release 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Feb 16, 2021
1 parent c746844 commit 98fcfc3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

## Unreleased

## 2.5.1 (2021-02-16)

### Bugs fixed

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

### Changes

* Updated all deps.

## 2.5.0 (2020-02-29)

### New features
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Be aware that this isn't the case if you connect to an already running REPL proc
Add the following, either in your project's `project.clj`, or in the `:user` profile found at `~/.lein/profiles.clj`:

```clojure
:plugins [[refactor-nrepl "2.5.0"]
[cider/cider-nrepl "0.24.0"]]
:plugins [[refactor-nrepl "2.5.1"]
[cider/cider-nrepl "0.25.9"]]
```

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

(swap! boot.repl/*default-dependencies* conj
'[refactor-nrepl "2.5.0"]
'[cider/cider-nrepl "0.24.0"])
'[refactor-nrepl "2.5.1"]
'[cider/cider-nrepl "0.25.9"])

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

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:

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

## License

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

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

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject refactor-nrepl "2.5.0"
(defproject refactor-nrepl "2.5.1"
:description "nREPL middleware to support editor-agnostic refactoring"
:url "http://github.com/clojure-emacs/refactor-nrepl"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit 98fcfc3

Please sign in to comment.