Skip to content

Commit 92d3723

Browse files
committed
Release 2.5.0
1 parent 900dc19 commit 92d3723

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## 2.5.0 (2020-02-29)
6+
57
- [#455](https://github.com/clojure-emacs/clj-refactor.el/pull/455): Added support for detecting shadow-cljs projects.
68
- [#402](https://github.com/clojure-emacs/clj-refactor.el/issues/402): cljr-stop-referring: do not alter strings.
79
- [#380](https://github.com/clojure-emacs/clj-refactor.el/issues/380): clean-ns: fix FileNotFoundException, by trying both the absolute path and the path relative to the project root. This requires a new refactor-nrepl, old versions will only check the absolute path.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ dir`, `change function signature`, `promote function`.
8989
clj-refactor | refactor-nrepl | CIDER | Clojure | Java |
9090
-------------|----------------|-------------|---------|------|
9191
2.4.0 | 2.4.0 | 0.17, 0.18 | 1.7+ | 8+ |
92+
2.5.0 | 2.5.0 | 0.24 | 1.8+ | 8+ |
9293

9394
## Usage
9495

clj-refactor.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
;; Lars Andersen <[email protected]>
88
;; Benedek Fazekas <[email protected]>
99
;; Bozhidar Batsov <[email protected]>
10-
;; Version: 2.5.0-snapshot
10+
;; Version: 2.5.0
1111
;; Keywords: convenience, clojure, cider
1212

1313
;; Package-Requires: ((emacs "25.1") (seq "2.19") (yasnippet "0.6.1") (paredit "24") (multiple-cursors "1.2.2") (clojure-mode "5.9") (cider "0.24.0") (parseedn "0.1") (inflections "2.3") (hydra "0.13.2"))
@@ -236,8 +236,8 @@ if it appears to be unused."
236236
:group 'cljr
237237
:type '(repeat string))
238238

239-
(defvar cljr-minimum-clojure-version "1.7.0"
240-
"The oldest clojure version our middleware can tolerate.")
239+
(defvar cljr-minimum-clojure-version "1.8.0"
240+
"The oldest Clojure version supported by our middleware.")
241241

242242
(defvar clj-refactor-map (make-sparse-keymap) "")
243243

0 commit comments

Comments
 (0)