summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-10-13 17:17:23 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2016-10-13 17:17:23 +0300
commitf3c396ff8cf4baf331b0e19e18e33b795b66ee3e (patch)
treeb1cd8cca788f404506ed3e420bdf83cc53752eed
parent7713423c87cab17b68a1eb3bf65f70f78c8c54b8 (diff)
Release CIDER 0.14 (Berlin a.k.a. The Birthday Release)
Happy birthday to me! :-)
-rw-r--r--CHANGELOG.md2
-rw-r--r--cider.el4
-rw-r--r--doc/installation.md8
3 files changed, 8 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 329954aa..00ecfaf9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## master (unreleased)
+## 0.14.0 (2016-10-13)
+
### New Features
* [#1825](https://github.com/clojure-emacs/cider/issues/1825): Display test input generated by `test.check`.
diff --git a/cider.el b/cider.el
index e210ac73..4ce210cf 100644
--- a/cider.el
+++ b/cider.el
@@ -11,7 +11,7 @@
;; Steve Purcell <steve@sanityinc.com>
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.com>
;; URL: http://www.github.com/clojure-emacs/cider
-;; Version: 0.14.0-cvs
+;; Version: 0.14.0
;; Package-Requires: ((emacs "24.3") (clojure-mode "5.5.2") (pkg-info "0.4") (queue "0.1.1") (spinner "1.7") (seq "2.16"))
;; Keywords: languages, clojure, cider
@@ -88,7 +88,7 @@ project inference will take place."
(require 'seq)
-(defconst cider-version "0.14.0-snapshot"
+(defconst cider-version "0.14.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.")
diff --git a/doc/installation.md b/doc/installation.md
index 514b624a..90e52531 100644
--- a/doc/installation.md
+++ b/doc/installation.md
@@ -95,7 +95,7 @@ Use the convenient plugin for defaults, either in your project's
A minimal `profiles.clj` for CIDER would be:
```clojure
-{:repl {:plugins [[cider/cider-nrepl "0.13.0"]]}}
+{:repl {:plugins [[cider/cider-nrepl "0.14.0"]]}}
```
**Be careful not to place this in the `:user` profile, as this way CIDER's
@@ -111,7 +111,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
(require 'boot.repl)
(swap! boot.repl/*default-dependencies*
- concat '[[cider/cider-nrepl "0.13.0"]])
+ concat '[[cider/cider-nrepl "0.14.0"]])
(swap! boot.repl/*default-middleware*
conj 'cider.nrepl/cider-middleware)
@@ -138,6 +138,6 @@ It goes without saying that your project should depend on `cider-nrepl`.
***
-`x.y.z` should match the version of CIDER you're currently using (say `0.13.0`).
+`x.y.z` should match the version of CIDER you're currently using (say `0.14.0`).
For snapshot releases of CIDER you should use the snapshot of the plugin as well
-(say `0.13.0-SNAPSHOT`).
+(say `0.14.0-SNAPSHOT`).