summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md2
-rw-r--r--cider.el4
3 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d54bf922..8f7a75bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,11 @@
## master (unreleased)
+## 0.8.0 / 2014-11-20
+
### New features
-* `cider-auto-jump-to-error` accepts new option 'errors-only
+* `cider-auto-jump-to-error` accepts new option `'errors-only`
* `cider-connect` now asks for remote hosts defined in machine-wide `ssh`
configuration files and automatically detects running instances of lein
server, both on local and remote machines.
@@ -14,7 +16,7 @@
* New interactive command `cider-clear-compilation-highlights`.
* First pass at a CIDER quick reference card.
* `completion-at-point` now annotates functions, macros and special forms, thus making it
-simpler to gain understanding of what you're using.
+simpler to gain understanding of what you're using (disabled by default).
* When invoked with a prefix argument `cider-quit` doesn't ask for confirmation.
* Enhance stacktrace to definition navigation to work for interactively defined vars.
* New vars: `cider-to-nrepl-filename-function` and `cider-from-nrepl-filename-function`
diff --git a/README.md b/README.md
index 46b6ee09..159f9f0b 100644
--- a/README.md
+++ b/README.md
@@ -150,7 +150,7 @@ Use the convenient plugin for defaults, either in your project's
A minimal `profiles.clj` for CIDER would be:
```clojure
-{:user {:plugins [[cider/cider-nrepl "0.7.0"]]}}
+{:user {:plugins [[cider/cider-nrepl "0.8.0"]]}}
```
### Using embedded nREPL server
diff --git a/cider.el b/cider.el
index 158b487c..5fa21681 100644
--- a/cider.el
+++ b/cider.el
@@ -9,7 +9,7 @@
;; Hugo Duncan <hugo@hugoduncan.org>
;; Steve Purcell <steve@sanityinc.com>
;; URL: http://www.github.com/clojure-emacs/cider
-;; Version: 0.8.0-cvs
+;; Version: 0.8.0
;; 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"))
;; Keywords: languages, clojure, cider
@@ -67,7 +67,7 @@
(require 'cider-util)
(require 'tramp-sh)
-(defvar cider-version "0.8.0-snapshot"
+(defvar cider-version "0.8.0"
"Fallback version used when it cannot be extracted automatically.
Normally it won't be used, unless `pkg-info' fails to extract the
version from the CIDER package or library.")