File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ## 0.8.0 / 2014-11-20
6
+
5
7
### New features
6
8
7
- * ` cider-auto-jump-to-error ` accepts new option 'errors-only
9
+ * ` cider-auto-jump-to-error ` accepts new option ` 'errors-only `
8
10
* ` cider-connect ` now asks for remote hosts defined in machine-wide ` ssh `
9
11
configuration files and automatically detects running instances of lein
10
12
server, both on local and remote machines.
14
16
* New interactive command ` cider-clear-compilation-highlights ` .
15
17
* First pass at a CIDER quick reference card.
16
18
* ` completion-at-point ` now annotates functions, macros and special forms, thus making it
17
- simpler to gain understanding of what you're using.
19
+ simpler to gain understanding of what you're using (disabled by default) .
18
20
* When invoked with a prefix argument ` cider-quit ` doesn't ask for confirmation.
19
21
* Enhance stacktrace to definition navigation to work for interactively defined vars.
20
22
* New vars: ` cider-to-nrepl-filename-function ` and ` cider-from-nrepl-filename-function `
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ Use the convenient plugin for defaults, either in your project's
150
150
A minimal ` profiles.clj ` for CIDER would be:
151
151
152
152
``` clojure
153
- {:user {:plugins [[cider/cider-nrepl " 0.7 .0" ]]}}
153
+ {:user {:plugins [[cider/cider-nrepl " 0.8 .0" ]]}}
154
154
```
155
155
156
156
### Using embedded nREPL server
Original file line number Diff line number Diff line change 9
9
; ; Hugo Duncan <hugo@hugoduncan.org>
10
10
; ; Steve Purcell <steve@sanityinc.com>
11
11
; ; URL: http://www.github.com/clojure-emacs/cider
12
- ; ; Version: 0.8.0-cvs
12
+ ; ; Version: 0.8.0
13
13
; ; Package-Requires: ((clojure-mode "3.0.0") (cl-lib "0.5") (dash "2.4.1") (pkg-info "0.4") (emacs "24") (queue "0.1.1"))
14
14
; ; Keywords: languages, clojure, cider
15
15
67
67
(require 'cider-util )
68
68
(require 'tramp-sh )
69
69
70
- (defvar cider-version " 0.8.0-snapshot "
70
+ (defvar cider-version " 0.8.0"
71
71
" Fallback version used when it cannot be extracted automatically.
72
72
Normally it won't be used, unless `pkg-info' fails to extract the
73
73
version from the CIDER package or library." )
You can’t perform that action at this time.
0 commit comments