Skip to content

Commit e503f56

Browse files
committed
Release CIDER 0.15 (London)
Here's to one awesome EuroClojure 2017! Have fun, everyone!
1 parent 5dbeb5b commit e503f56

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 0.15.0 (2017-07-20)
6+
57
### New Features
68

79
* [#2050](https://github.com/clojure-emacs/cider/pull/2050) Use `view-mode` for `cider-grimoire` buffers

cider.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
;; Steve Purcell <[email protected]>
1212
;; Maintainer: Bozhidar Batsov <[email protected]>
1313
;; URL: http://www.github.com/clojure-emacs/cider
14-
;; Version: 0.15.0-snapshot
14+
;; Version: 0.15.0
1515
;; Package-Requires: ((emacs "24.4") (clojure-mode "5.6.0") (pkg-info "0.4") (queue "0.1.1") (spinner "1.7") (seq "2.16"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -90,7 +90,7 @@ project inference will take place."
9090

9191
(require 'seq)
9292

93-
(defconst cider-version "0.15.0-snapshot"
93+
(defconst cider-version "0.15.0"
9494
"Fallback version used when it cannot be extracted automatically.
9595
Normally it won't be used, unless `pkg-info' fails to extract the
9696
version from the CIDER package or library.")

doc/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Use the convenient plugin for defaults, either in your project's
151151
A minimal `profiles.clj` for CIDER would be:
152152

153153
```clojure
154-
{:repl {:plugins [[cider/cider-nrepl "0.14.0"]]}}
154+
{:repl {:plugins [[cider/cider-nrepl "0.15.0"]]}}
155155
```
156156

157157
**Be careful not to place this in the `:user` profile, as this way CIDER's
@@ -167,7 +167,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
167167
(require 'boot.repl)
168168

169169
(swap! boot.repl/*default-dependencies*
170-
concat '[[cider/cider-nrepl "0.14.0"]])
170+
concat '[[cider/cider-nrepl "0.15.0"]])
171171

172172
(swap! boot.repl/*default-middleware*
173173
conj 'cider.nrepl/cider-middleware)
@@ -194,6 +194,6 @@ It goes without saying that your project should depend on `cider-nrepl`.
194194

195195
***
196196

197-
`x.y.z` should match the version of CIDER you're currently using (say `0.14.0`).
197+
`x.y.z` should match the version of CIDER you're currently using (say `0.15.0`).
198198
For snapshot releases of CIDER you should use the snapshot of the plugin as well
199-
(say `0.14.0-SNAPSHOT`).
199+
(say `0.15.0-SNAPSHOT`).

0 commit comments

Comments
 (0)