Skip to content

Commit f7f8a29

Browse files
author
Bozhidar Batsov
committed
Release 0.8.0
1 parent 244ba61 commit f7f8a29

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## master (unreleased)
44

5+
## 0.8.0 / 2014-11-20
6+
57
### New features
68

7-
* `cider-auto-jump-to-error` accepts new option 'errors-only
9+
* `cider-auto-jump-to-error` accepts new option `'errors-only`
810
* `cider-connect` now asks for remote hosts defined in machine-wide `ssh`
911
configuration files and automatically detects running instances of lein
1012
server, both on local and remote machines.
@@ -14,7 +16,7 @@
1416
* New interactive command `cider-clear-compilation-highlights`.
1517
* First pass at a CIDER quick reference card.
1618
* `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).
1820
* When invoked with a prefix argument `cider-quit` doesn't ask for confirmation.
1921
* Enhance stacktrace to definition navigation to work for interactively defined vars.
2022
* New vars: `cider-to-nrepl-filename-function` and `cider-from-nrepl-filename-function`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Use the convenient plugin for defaults, either in your project's
150150
A minimal `profiles.clj` for CIDER would be:
151151

152152
```clojure
153-
{:user {:plugins [[cider/cider-nrepl "0.7.0"]]}}
153+
{:user {:plugins [[cider/cider-nrepl "0.8.0"]]}}
154154
```
155155

156156
### Using embedded nREPL server

cider.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
;; Hugo Duncan <[email protected]>
1010
;; Steve Purcell <[email protected]>
1111
;; URL: http://www.github.com/clojure-emacs/cider
12-
;; Version: 0.8.0-cvs
12+
;; Version: 0.8.0
1313
;; 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"))
1414
;; Keywords: languages, clojure, cider
1515

@@ -67,7 +67,7 @@
6767
(require 'cider-util)
6868
(require 'tramp-sh)
6969

70-
(defvar cider-version "0.8.0-snapshot"
70+
(defvar cider-version "0.8.0"
7171
"Fallback version used when it cannot be extracted automatically.
7272
Normally it won't be used, unless `pkg-info' fails to extract the
7373
version from the CIDER package or library.")

0 commit comments

Comments
 (0)