Skip to content

Commit 8a9eab3

Browse files
committed
Release 0.15.1
1 parent 7a72259 commit 8a9eab3

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 0.15.1 (2017-09-13)
6+
57
### New Features
68

79
* [#2083](https://github.com/clojure-emacs/cider/pull/2083): New utility function `cider-add-face`.
810
* [#2083](https://github.com/clojure-emacs/cider/pull/2083): New utility function `cider-run-chained-hook`.
9-
* [#2083](https://github.com/clojure-emacs/cider/pull/2083): New `cider-repl-preoutput-hook` that allows custom output processing.
11+
* [#2083](https://github.com/clojure-emacs/cider/pull/2083): New `cider-repl-preoutput-hook` that allows custom output processing.
1012
* [#2083](https://github.com/clojure-emacs/cider/pull/2083): Highlight clojure.spec keywords in REPL (`cider-repl-highlight-spec-keywords` pre-output processor).
1113

1214
### Changes
@@ -23,7 +25,7 @@
2325
* Fix interactive evaluation in cljc buffers with only one connection.
2426
* [#2058](https://github.com/clojure-emacs/cider/pull/2058): Don't cache ns-forms in buffers with no such forms.
2527
* [#2057](https://github.com/clojure-emacs/cider/pull/2057): Use `cider--font-lock-ensure` for compatibility with Emacs 24.5.
26-
* [cider-nrepl#436](https://github.com/clojure-emacs/cider-nrepl/pull/436): Ensure that `*print-right-margin*` is not ignored by cider-nrepl middleware.
28+
* [cider-nrepl#436](https://github.com/clojure-emacs/cider-nrepl/pull/436): Ensure that `*print-right-margin*` is not ignored by cider-nrepl middleware.
2729
* [cider-nrepl#435](https://github.com/clojure-emacs/cider-nrepl/pull/435): Allow debugging of forms with `#?(:cljs ... :clj ..)` conditionals.
2830
* [cider-nrepl#432](https://github.com/clojure-emacs/cider-nrepl/pull/432): Ensure `pprint` is after `load-file`.
2931

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.1-snapshot
14+
;; Version: 0.15.1
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.1-snapshot"
93+
(defconst cider-version "0.15.1"
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.15.0"]]}}
154+
{:repl {:plugins [[cider/cider-nrepl "0.15.1"]]}}
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.15.0"]])
170+
concat '[[cider/cider-nrepl "0.15.1"]])
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.15.0`).
197+
`x.y.z` should match the version of CIDER you're currently using (say `0.15.1`).
198198
For snapshot releases of CIDER you should use the snapshot of the plugin as well
199-
(say `0.15.0-SNAPSHOT`).
199+
(say `0.15.1-SNAPSHOT`).

0 commit comments

Comments
 (0)