diff --git a/CHANGELOG.md b/CHANGELOG.md index 8907428c..e7a6b847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.5.0 (2020-02-29) + ### New features * [clojure-emacs/clj-refactor.el#443](https://github.com/clojure-emacs/clj-refactor.el/issues/443): `clean-ns` support namespaces with js literal (#js). @@ -18,7 +20,7 @@ * [#256](https://github.com/clojure-emacs/refactor-nrepl/pull/256): Ignore malformed artifact coordinates when fetching from Clojars. -## 2.4.0 +## 2.4.0 (2018-08-26) ### New features diff --git a/README.md b/README.md index 36362d26..463fe686 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ 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.4.0"] +:plugins [[refactor-nrepl "2.5.0"] [cider/cider-nrepl "0.24.0"]] ``` @@ -34,7 +34,7 @@ Add the following in `~/.boot/profile.boot`: (require 'boot.repl) (swap! boot.repl/*default-dependencies* conj - '[refactor-nrepl "2.4.0"] + '[refactor-nrepl "2.5.0"] '[cider/cider-nrepl "0.24.0"]) (swap! boot.repl/*default-middleware* conj diff --git a/project.clj b/project.clj index eaf9b3d5..da1fe0e8 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject refactor-nrepl "2.5.0-SNAPSHOT" +(defproject refactor-nrepl "2.5.0" :description "nREPL middleware to support editor-agnostic refactoring" :url "http://github.com/clojure-emacs/refactor-nrepl" :license {:name "Eclipse Public License"