Skip to content

Commit 91210f6

Browse files
committed
Release 0.19
1 parent 556bd65 commit 91210f6

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
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.19.0 (2019-01-01)
6+
57
### New features
68

79
* [#2430](https://github.com/clojure-emacs/cider/issues/2375): `cider-find-var` opens archive files inside [AVFS](http://avf.sourceforge.net) folders if AVFS is detected.

cider.el

Lines changed: 3 additions & 3 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.19.0-snapshot
14+
;; Version: 0.19.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.19.0-snapshot"
89+
(defconst cider-version "0.19.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.")
@@ -404,7 +404,7 @@ Elements of the list are artifact name and list of exclusions to apply for the a
404404
(defconst cider-required-middleware-version "0.18.0"
405405
"The minimum CIDER nREPL version that's known to work properly with CIDER.")
406406

407-
(defconst cider-latest-middleware-version "0.19.0-SNAPSHOT"
407+
(defconst cider-latest-middleware-version "0.19.0"
408408
"The latest CIDER nREPL version that's known to work properly with CIDER.")
409409

410410
(defcustom cider-jack-in-auto-inject-clojure nil

doc/installation.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ middleware](https://github.com/clojure-emacs/cider-nrepl). Starting
126126
with version 0.11, `cider-jack-in` (<kbd>C-c C-x (C-)j (C-)j</kbd>)
127127
automatically injects this middle and other dependencies as required.
128128

129-
!!! Note
129+
!!! Note
130130
In the past, if you were setting up CIDER, you might have had to
131131
modify `profiles.clj` or `profile.boot`. CIDER now handles
132132
everything automatically and you don't need to add anything
@@ -152,6 +152,11 @@ section).
152152

153153
#### Using Leiningen
154154

155+
!!! Note
156+
157+
It's highly recommended to use Leiningen 2.8.3 or newer, as 2.8.3 is the first
158+
release to ship with nREPL 0.5.
159+
155160
Use the convenient plugin for defaults, either in your project's
156161
`project.clj` file or in the :repl profile in `~/.lein/profiles.clj`.
157162

@@ -162,7 +167,7 @@ Use the convenient plugin for defaults, either in your project's
162167
A minimal `profiles.clj` for CIDER would be:
163168

164169
```clojure
165-
{:repl {:plugins [[cider/cider-nrepl "0.18.0"]]}}
170+
{:repl {:plugins [[cider/cider-nrepl "0.19.0"]]}}
166171
```
167172

168173
!!! warning
@@ -185,7 +190,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
185190
(require 'boot.repl)
186191

187192
(swap! boot.repl/*default-dependencies*
188-
concat '[[cider/cider-nrepl "0.18.0"]])
193+
concat '[[cider/cider-nrepl "0.19.0"]])
189194

190195
(swap! boot.repl/*default-middleware*
191196
conj 'cider.nrepl/cider-middleware)
@@ -220,4 +225,3 @@ It goes without saying that your project should depend on `cider-nrepl`.
220225
with a recent version of CIDER. You can check the required version
221226
of cider-nrepl for your version of CIDER by looking at
222227
`cider-required-middleware-version`.
223-

doc/up_and_running.md

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

8989
```sh
90-
$ clj -Sdeps '{:deps {nrepl {:mvn/version "0.4.5"} cider/cider-nrepl {:mvn/version "0.18.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
90+
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.19.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9191
```
9292

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

0 commit comments

Comments
 (0)