File tree Expand file tree Collapse file tree 2 files changed +8
-15
lines changed Expand file tree Collapse file tree 2 files changed +8
-15
lines changed Original file line number Diff line number Diff line change 10
10
* [ #268 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/268 ) : Added support for fetching artifact versions from Clojars.
11
11
* [ #271 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/271 ) : Improved shadow-cljs support.
12
12
13
+ ### Changes
14
+
15
+ * Drop support for nREPL 0.2.
16
+
13
17
### Bugs fixed
14
18
15
19
* [ #256 ] ( https://github.com/clojure-emacs/refactor-nrepl/pull/256 ) : Ignore malformed artifact coordinates when fetching from Clojars.
Original file line number Diff line number Diff line change 5
5
[refactor-nrepl.core :as core]
6
6
[refactor-nrepl.ns.libspecs :refer [namespace-aliases]]
7
7
[refactor-nrepl.stubs-for-interface :refer [stubs-for-interface]]
8
- [clojure.walk :as walk]))
9
-
10
- ; ; Compatibility with the legacy tools.nrepl and the new nREPL 0.4.x.
11
- ; ; The assumption is that if someone is using old lein repl or boot repl
12
- ; ; they'll end up using the tools.nrepl, otherwise the modern one.
13
- (when-not (resolve 'set-descriptor!)
14
- (if (find-ns 'clojure.tools.nrepl)
15
- (require
16
- '[clojure.tools.nrepl.middleware :refer [set-descriptor!]]
17
- '[clojure.tools.nrepl.misc :refer [response-for]]
18
- '[clojure.tools.nrepl.transport :as transport])
19
- (require
20
- '[nrepl.middleware :refer [set-descriptor!]]
21
- '[nrepl.misc :refer [response-for]]
22
- '[nrepl.transport :as transport])))
8
+ [clojure.walk :as walk]
9
+ [nrepl.middleware :refer [set-descriptor!]]
10
+ [nrepl.misc :refer [response-for]]
11
+ [nrepl.transport :as transport]))
23
12
24
13
(defn- require-and-resolve [sym]
25
14
(require (symbol (namespace sym)))
You can’t perform that action at this time.
0 commit comments