Skip to content

Commit d18a6e8

Browse files
committed
Release 0.17.0
1 parent 9d8bcaa commit d18a6e8

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 0.17.0 (2018-05-07)
6+
57
### New features
68

79
* Extracted part of the nREPL-agnostic functionality to `orchard`.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,21 +102,21 @@ Use the convenient plugin for defaults, either in your project's
102102
`~/.lein/profiles.clj`.
103103

104104
```clojure
105-
:plugins [[cider/cider-nrepl "0.16.0"]]
105+
:plugins [[cider/cider-nrepl "0.17.0"]]
106106
```
107107

108108
A minimal `profiles.clj` for CIDER would be:
109109

110110
```clojure
111-
{:user {:plugins [[cider/cider-nrepl "0.16.0"]]}}
111+
{:user {:plugins [[cider/cider-nrepl "0.17.0"]]}}
112112
```
113113

114114
Or (if you know what you're doing) add `cider-nrepl` to your `:dev
115115
:dependencies` vector plus specific middleware to `:nrepl-middleware`
116116
under `:repl-options`.
117117

118118
```clojure
119-
:dependencies [[cider/cider-nrepl "0.16.0"]]
119+
:dependencies [[cider/cider-nrepl "0.17.0"]]
120120
:repl-options {:nrepl-middleware
121121
[cider.nrepl/wrap-apropos
122122
cider.nrepl/wrap-classpath
@@ -181,7 +181,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
181181
with the following "magic" incantation:
182182

183183
```
184-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.17.0-SNAPSHOT"} }}' -e '(require (quote cider-nrepl.main)) (cider-nrepl.main/init ["cider.nrepl/cider-middleware"])'
184+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.18.0-SNAPSHOT"} }}' -e '(require (quote cider-nrepl.main)) (cider-nrepl.main/init ["cider.nrepl/cider-middleware"])'
185185
```
186186

187187
Note that `clj` was introduced in Clojure 1.9.

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def VERSION "0.17.0-SNAPSHOT")
1+
(def VERSION "0.17.0")
22

33
(defproject cider/cider-nrepl VERSION
44
:description "nREPL middlewares for CIDER"

src/cider/nrepl/version.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
(def version
77
"Current version of CIDER nREPL, map of :major, :minor, :incremental, and :qualifier."
8-
(let [version-string "0.17.0-snapshot"]
8+
(let [version-string "0.17.0"]
99
(assoc (->> version-string
1010
(re-find #"(\d+)\.(\d+)\.(\d+)-?(.*)")
1111
rest

0 commit comments

Comments
 (0)