Skip to content

Commit

Permalink
Release 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Jan 1, 2019
1 parent 556bd65 commit 91210f6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 0.19.0 (2019-01-01)

### New features

* [#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.
Expand Down
6 changes: 3 additions & 3 deletions cider.el
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
;; Steve Purcell <[email protected]>
;; Maintainer: Bozhidar Batsov <[email protected]>
;; URL: http://www.github.com/clojure-emacs/cider
;; Version: 0.19.0-snapshot
;; Version: 0.19.0
;; 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"))
;; Keywords: languages, clojure, cider

Expand Down Expand Up @@ -86,7 +86,7 @@
(require 'seq)
(require 'sesman)

(defconst cider-version "0.19.0-snapshot"
(defconst cider-version "0.19.0"
"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 Expand Up @@ -404,7 +404,7 @@ Elements of the list are artifact name and list of exclusions to apply for the a
(defconst cider-required-middleware-version "0.18.0"
"The minimum CIDER nREPL version that's known to work properly with CIDER.")

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

(defcustom cider-jack-in-auto-inject-clojure nil
Expand Down
12 changes: 8 additions & 4 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ middleware](https://github.com/clojure-emacs/cider-nrepl). Starting
with version 0.11, `cider-jack-in` (<kbd>C-c C-x (C-)j (C-)j</kbd>)
automatically injects this middle and other dependencies as required.

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

#### Using Leiningen

!!! Note

It's highly recommended to use Leiningen 2.8.3 or newer, as 2.8.3 is the first
release to ship with nREPL 0.5.

Use the convenient plugin for defaults, either in your project's
`project.clj` file or in the :repl profile in `~/.lein/profiles.clj`.

Expand All @@ -162,7 +167,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.18.0"]]}}
{:repl {:plugins [[cider/cider-nrepl "0.19.0"]]}}
```

!!! warning
Expand All @@ -185,7 +190,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.18.0"]])
concat '[[cider/cider-nrepl "0.19.0"]])

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

2 changes: 1 addition & 1 deletion doc/up_and_running.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ $ boot repl -s wait (or whatever task launches a repl)
It is also possible for plain `clj`, although the command is somewhat longer:

```sh
$ 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]"
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.19.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
```

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

0 comments on commit 91210f6

Please sign in to comment.