Skip to content

Commit 700029b

Browse files
committed
Release 0.25.1
1 parent 7b07a92 commit 700029b

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## master (unreleased)
44

5+
## 0.25.1 (2020-06-04)
6+
7+
### Bugs fixed
8+
9+
* Bump Orchard to 0.5.10, as the 0.5.9 was a bad build. (https://github.com/clojure-emacs/orchard/issues/91[Orchard issue])
10+
511
## 0.25.0 (2020-05-30)
612

713
### New Features

doc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cider-nrepl
22
title: CIDER nREPL
3-
version: master
3+
version: 0.25
44
nav:
55
- modules/ROOT/nav.adoc

doc/modules/ROOT/pages/nrepl-api/ops.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file is _generated_ by #'cider.nrepl.impl.docs/-main
44
////
55
= Supported nREPL operations
66
7-
[small]#generated from a verbose 'describe' response (cider-nrepl v0.25.0-SNAPSHOT)#
7+
[small]#generated from a verbose 'describe' response (cider-nrepl v0.25.1)#
88

99
== Operations
1010

@@ -937,7 +937,7 @@ Required parameters::
937937
{blank}
938938

939939
Optional parameters::
940-
* `:filter-regex` Only the specs that matches filter prefix regex will be returned
940+
* `:filter-regex` Only the specs that matches filter prefix regex will be returned
941941

942942

943943
Returns::
@@ -1147,4 +1147,3 @@ Optional parameters::
11471147

11481148
Returns::
11491149
* `:status` done
1150-

doc/modules/ROOT/pages/usage.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ Use the convenient plugin for defaults, either in your project's
1515

1616
[source,clojure]
1717
----
18-
:plugins [[cider/cider-nrepl "0.25.0"]]
18+
:plugins [[cider/cider-nrepl "0.25.1"]]
1919
----
2020

2121
A minimal `profiles.clj` for CIDER would be:
2222

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.25.0"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.25.1"]]}}
2626
----
2727

2828
Or (if you know what you're doing) add `cider-nrepl` to your `:dev
@@ -31,7 +31,7 @@ under `:repl-options`.
3131

3232
[source,clojure]
3333
----
34-
:dependencies [[cider/cider-nrepl "0.25.0"]]
34+
:dependencies [[cider/cider-nrepl "0.25.1"]]
3535
:repl-options {:nrepl-middleware
3636
[cider.nrepl/wrap-apropos
3737
cider.nrepl/wrap-classpath
@@ -64,15 +64,15 @@ it on the command line through the `cider.tasks/add-middleware` task
6464
functionality):
6565

6666
----
67-
boot -d nrepl:0.6.0 -d cider/cider-nrepl:0.25.0 -i "(require 'cider.tasks)" cider.tasks/add-middleware -m cider.nrepl.middleware.apropos/wrap-apropos -m cider.nrepl.middleware.version/wrap-version repl --server wait
67+
boot -d nrepl:0.7.0 -d cider/cider-nrepl:0.25.1 -i "(require 'cider.tasks)" cider.tasks/add-middleware -m cider.nrepl.middleware.apropos/wrap-apropos -m cider.nrepl.middleware.version/wrap-version repl --server wait
6868
----
6969

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

7272
[source,clojure]
7373
----
74-
(set-env! :dependencies '[[nrepl "0.6.0"]
75-
[cider/cider-nrepl "0.25.0"]])
74+
(set-env! :dependencies '[[nrepl "0.7.0"]
75+
[cider/cider-nrepl "0.25.1"]])
7676
7777
(require '[cider.tasks :refer [add-middleware]])
7878
@@ -88,11 +88,13 @@ For more information visit https://github.com/boot-clj/boot/wiki/Cider-REPL[boot
8888

8989
== Via clj
9090

91+
NOTE: `clj` was introduced in Clojure 1.9.
92+
9193
You can easily boot an nREPL server with the CIDER middleware loaded
9294
with the following "magic" incantation:
9395

9496
----
95-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.25.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
97+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.25.1"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9698
----
9799

98100
There are also two convenient aliases you can employ:
@@ -102,12 +104,12 @@ There are also two convenient aliases you can employ:
102104
{...
103105
:aliases
104106
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
105-
cider/cider-nrepl {:mvn/version "0.25.0"}}
107+
cider/cider-nrepl {:mvn/version "0.25.1"}}
106108
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
107109
108110
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
109111
org.clojure/clojurescript {:mvn/version "1.10.339"}
110-
cider/cider-nrepl {:mvn/version "0.25.0"}
112+
cider/cider-nrepl {:mvn/version "0.25.1"}
111113
cider/piggieback {:mvn/version "0.4.1"}}
112114
:main-opts ["-m" "nrepl.cmdline" "--middleware"
113115
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}
@@ -119,9 +121,7 @@ Which then allow you to simply run:
119121
clj -A:cider-clj
120122
----
121123

122-
Note that `clj` was introduced in Clojure 1.9.
123-
124-
== Via embedding nREPL in your app
124+
== Via embedding nREPL in your application
125125

126126
If you're embedding nREPL in your application you'll have to start the
127127
server with CIDER's own nREPL handler.

0 commit comments

Comments
 (0)