Skip to content

Commit 200c88a

Browse files
committed
Release 0.21.0
1 parent 329491d commit 200c88a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
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.21.0 (2019-02-19)
6+
57
### New features
68

79
* The `cider-test-run-*` and `cider-ns-refresh-*` commands are now interruptible by the `cider-interrupt` command.

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.21.0-snapshot
14+
;; Version: 0.21.0
1515
;; Package-Requires: ((emacs "25") (clojure-mode "5.9") (pkg-info "0.4") (queue "0.2") (spinner "1.7") (seq "2.16") (sesman "0.3.2"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -86,7 +86,7 @@
8686
(require 'seq)
8787
(require 'sesman)
8888

89-
(defconst cider-version "0.21.0-snapshot"
89+
(defconst cider-version "0.21.0"
9090
"Fallback version used when it cannot be extracted automatically.
9191
Normally it won't be used, unless `pkg-info' fails to extract the
9292
version from the CIDER package or library.")

doc/installation.md

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

171171
```clojure
172-
{:repl {:plugins [[cider/cider-nrepl "0.20.0"]]}}
172+
{:repl {:plugins [[cider/cider-nrepl "0.21.1"]]}}
173173
```
174174

175175
!!! warning
@@ -192,7 +192,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
192192
(require 'boot.repl)
193193

194194
(swap! boot.repl/*default-dependencies*
195-
concat '[[cider/cider-nrepl "0.20.0"]])
195+
concat '[[cider/cider-nrepl "0.21.1"]])
196196

197197
(swap! boot.repl/*default-middleware*
198198
conj 'cider.nrepl/cider-middleware)

doc/up_and_running.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ $ boot repl -s wait (or whatever task launches a repl)
8989
It is also possible for plain `clj`, although the command is somewhat longer:
9090

9191
```sh
92-
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.20.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
92+
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.21.1"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9393
```
9494

9595
Alternatively, you can start nREPL either manually or using the facilities

0 commit comments

Comments
 (0)