Skip to content

Commit 9786c7c

Browse files
committed
Release 0.18.0
1 parent 6f59a61 commit 9786c7c

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

README.md

+11-10
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.17.0"]]
105+
:plugins [[cider/cider-nrepl "0.18.0"]]
106106
```
107107

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

110110
```clojure
111-
{:user {:plugins [[cider/cider-nrepl "0.17.0"]]}}
111+
{:user {:plugins [[cider/cider-nrepl "0.18.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.17.0"]]
119+
:dependencies [[cider/cider-nrepl "0.18.0"]]
120120
:repl-options {:nrepl-middleware
121121
[cider.nrepl/wrap-apropos
122122
cider.nrepl/wrap-classpath
@@ -155,14 +155,14 @@ it on the command line through the `cider.tasks/add-middleware` task
155155
functionality):
156156

157157
```
158-
boot -d org.clojure/tools.nrepl:0.2.12 -d cider/cider-nrepl:0.x.y-SNAPSHOT -i "(require 'cider.tasks)" cider.tasks/add-middleware -m cider.nrepl.middleware.apropos/wrap-apropos -m cider.nrepl.middleware.version/wrap-version cider.tasks/nrepl-server wait
158+
boot -d nrepl:0.4.4 -d cider/cider-nrepl:0.18.0 -i "(require 'cider.tasks)" cider.tasks/add-middleware -m cider.nrepl.middleware.apropos/wrap-apropos -m cider.nrepl.middleware.version/wrap-version cider.tasks/nrepl-server wait
159159
```
160160

161161
Or for all of their projects by adding a `~/.boot/profile.boot` file like so:
162162

163163
```clojure
164-
(set-env! :dependencies '[[org.clojure/tools.nrepl "0.2.12"]
165-
[cider/cider-nrepl "0.x.y-SNAPSHOT"]])
164+
(set-env! :dependencies '[[nrepl "0.4.4"]
165+
[cider/cider-nrepl "0.18.0"]])
166166

167167
(require '[cider.tasks :refer [add-middleware nrepl-server]])
168168

@@ -182,7 +182,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
182182
with the following "magic" incantation:
183183

184184
```
185-
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"])'
185+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.18.0"} }}' -e '(require (quote cider-nrepl.main)) (cider-nrepl.main/init ["cider.nrepl/cider-middleware"])'
186186
```
187187

188188
Note that `clj` was introduced in Clojure 1.9.
@@ -271,9 +271,10 @@ release starts immediately after the previous one has been
271271
shipped. Bugfix/point releases (if any) address only serious bugs and
272272
never contain new features.
273273

274-
The versions of CIDER and cider-nrepl are always kept in sync. If
275-
you're tracking the `master` branch of CIDER, you should also be
276-
tracking the `master` branch of `cider-nrepl`.
274+
Prior to cider-nrepl 0.18, CIDER and cider-nrepl releases
275+
were always done in sync. As most editors started relying on cider-nrepl
276+
this was eventually changed and now cider-nrepl releases happen on their
277+
own schedule.
277278

278279
## Contributing
279280

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(def VERSION "0.18.0-SNAPSHOT")
1+
(def VERSION "0.18.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
@@ -6,7 +6,7 @@
66
;; TODO: Figure out how to read the version from project.clj to avoid duplication
77
(def version-string
88
"The current version for cider-nrepl as a string."
9-
"0.18.0-snapshot")
9+
"0.18.0")
1010

1111
(def version
1212
"Current version of CIDER nREPL as a map.

test/smoketest/project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(defproject smoketest "0.1.0-SNAPSHOT"
22
:dependencies [[nrepl "0.4.2"]
3-
[cider/cider-nrepl "0.18.0-SNAPSHOT"]]
3+
[cider/cider-nrepl "0.18.0"]]
44
:exclusions [org.clojure/clojure]
55
:profiles {:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
66
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}

0 commit comments

Comments
 (0)