File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 12
12
* [ #885 ] ( https://github.com/clojure-emacs/cider/issues/885 ) : Translate nREPL-delivered map keys to symbols before adding as text properties.
13
13
* Fix tab completion in ` cider-read-from-minibuffer ` .
14
14
* [ #894 ] ( https://github.com/clojure-emacs/cider/issues/894 ) : Make it possible to enter any symbol with ` cider-read-symbol-name ` .
15
+ * Report Clojure's version including its qualifier (e.g. ` alpha4 ` ) if present.
15
16
16
17
## 0.8.1 / 2014-11-20
17
18
Original file line number Diff line number Diff line change @@ -188,11 +188,9 @@ Signal an error if it is not supported."
188
188
" Retrieve the underlying connection's Clojure version."
189
189
(with-current-buffer (nrepl-current-connection-buffer)
190
190
(when nrepl-versions
191
- (let* ((version-dict (nrepl-dict-get nrepl-versions " clojure" ))
192
- (major (nrepl-dict-get version-dict " major" ))
193
- (minor (nrepl-dict-get version-dict " minor" ))
194
- (incremental (nrepl-dict-get version-dict " incremental" )))
195
- (format " %s .%s .%s " major minor incremental)))))
191
+ (-> nrepl-versions
192
+ (nrepl-dict-get " clojure" )
193
+ (nrepl-dict-get " version-string" )))))
196
194
197
195
(defun cider--nrepl-version ()
198
196
" Retrieve the underlying connection's nREPL version."
You can’t perform that action at this time.
0 commit comments