Skip to content

Commit

Permalink
Release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Feb 29, 2020
1 parent 900dc19 commit 92d3723
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 2.5.0 (2020-02-29)

- [#455](https://github.com/clojure-emacs/clj-refactor.el/pull/455): Added support for detecting shadow-cljs projects.
- [#402](https://github.com/clojure-emacs/clj-refactor.el/issues/402): cljr-stop-referring: do not alter strings.
- [#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.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ dir`, `change function signature`, `promote function`.
clj-refactor | refactor-nrepl | CIDER | Clojure | Java |
-------------|----------------|-------------|---------|------|
2.4.0 | 2.4.0 | 0.17, 0.18 | 1.7+ | 8+ |
2.5.0 | 2.5.0 | 0.24 | 1.8+ | 8+ |

## Usage

Expand Down
6 changes: 3 additions & 3 deletions clj-refactor.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
;; Lars Andersen <expez@expez.com>
;; Benedek Fazekas <benedek.fazekas@gmail.com>
;; Bozhidar Batsov <bozhidar@batsov.com>
;; Version: 2.5.0-snapshot
;; Version: 2.5.0
;; Keywords: convenience, clojure, cider

;; 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"))
Expand Down Expand Up @@ -236,8 +236,8 @@ if it appears to be unused."
:group 'cljr
:type '(repeat string))

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

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

Expand Down

0 comments on commit 92d3723

Please sign in to comment.