From 98fcfc3bb96c50d3d65353df4479972f7f5b76bc Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Tue, 16 Feb 2021 11:14:55 +0200 Subject: [PATCH] Release 2.5.1 --- CHANGELOG.md | 6 ++++++ README.md | 12 ++++++------ project.clj | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f883b0bd..391b87a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 463fe686..4d561c60 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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) @@ -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)] @@ -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. diff --git a/project.clj b/project.clj index cf97c01b..28607248 100644 --- a/project.clj +++ b/project.clj @@ -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"