Skip to content

Commit

Permalink
Release 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Sep 13, 2017
1 parent 7a72259 commit 8a9eab3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,11 +2,13 @@

## master (unreleased)

## 0.15.1 (2017-09-13)

### New Features

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

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

Expand Down
4 changes: 2 additions & 2 deletions cider.el
Expand Up @@ -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.15.1-snapshot
;; Version: 0.15.1
;; Package-Requires: ((emacs "24.4") (clojure-mode "5.6.0") (pkg-info "0.4") (queue "0.1.1") (spinner "1.7") (seq "2.16"))
;; Keywords: languages, clojure, cider

Expand Down Expand Up @@ -90,7 +90,7 @@ project inference will take place."

(require 'seq)

(defconst cider-version "0.15.1-snapshot"
(defconst cider-version "0.15.1"
"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.")
Expand Down
8 changes: 4 additions & 4 deletions doc/installation.md
Expand Up @@ -151,7 +151,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.15.0"]]}}
{:repl {:plugins [[cider/cider-nrepl "0.15.1"]]}}
```

**Be careful not to place this in the `:user` profile, as this way CIDER's
Expand All @@ -167,7 +167,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.15.0"]])
concat '[[cider/cider-nrepl "0.15.1"]])

(swap! boot.repl/*default-middleware*
conj 'cider.nrepl/cider-middleware)
Expand All @@ -194,6 +194,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.15.0`).
`x.y.z` should match the version of CIDER you're currently using (say `0.15.1`).
For snapshot releases of CIDER you should use the snapshot of the plugin as well
(say `0.15.0-SNAPSHOT`).
(say `0.15.1-SNAPSHOT`).

0 comments on commit 8a9eab3

Please sign in to comment.