Skip to content

Commit 013a78d

Browse files
committed
Release 0.25
1 parent a372e2f commit 013a78d

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
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.25.0 (2020-05-30)
6+
57
### New Features
68

79
* [#670](https://github.com/clojure-emacs/cider-nrepl/pull/670): Extend `undef` op to work on fully qualified symbols.

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/compatibility.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ requirements were bumped to nREPL 0.6 in recent versions.
7575
| 1.8
7676
| 0.6
7777

78+
| 0.25
79+
| 8
80+
| 1.8
81+
| 0.6
82+
7883
|===
7984

8085
== Backwards Compatibility

doc/modules/ROOT/pages/usage.adoc

Lines changed: 8 additions & 8 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.24.0"]]
18+
:plugins [[cider/cider-nrepl "0.25.0"]]
1919
----
2020

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

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.24.0"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.25.0"]]}}
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.24.0"]]
34+
:dependencies [[cider/cider-nrepl "0.25.0"]]
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.24.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.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
6868
----
6969

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

7272
[source,clojure]
7373
----
7474
(set-env! :dependencies '[[nrepl "0.6.0"]
75-
[cider/cider-nrepl "0.24.0"]])
75+
[cider/cider-nrepl "0.25.0"]])
7676
7777
(require '[cider.tasks :refer [add-middleware]])
7878
@@ -92,7 +92,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
9292
with the following "magic" incantation:
9393

9494
----
95-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.24.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
95+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.25.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9696
----
9797

9898
There are also two convenient aliases you can employ:
@@ -102,12 +102,12 @@ There are also two convenient aliases you can employ:
102102
{...
103103
:aliases
104104
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
105-
cider/cider-nrepl {:mvn/version "0.24.0"}}
105+
cider/cider-nrepl {:mvn/version "0.25.0"}}
106106
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
107107
108108
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
109109
org.clojure/clojurescript {:mvn/version "1.10.339"}
110-
cider/cider-nrepl {:mvn/version "0.24.0"}
110+
cider/cider-nrepl {:mvn/version "0.25.0"}
111111
cider/piggieback {:mvn/version "0.4.1"}}
112112
:main-opts ["-m" "nrepl.cmdline" "--middleware"
113113
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject cider/cider-nrepl "0.25.0-SNAPSHOT"
1+
(defproject cider/cider-nrepl "0.25.0"
22
:description "A collection of nREPL middlewares designed to enhance Clojure editors."
33
:url "https://github.com/clojure-emacs/cider-nrepl"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)