Skip to content

Commit d7fba22

Browse files
committed
Release 0.28.5
1 parent d16b87a commit d7fba22

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

CHANGELOG.md

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

55
### Changes
66

7+
## 0.28.5 (2022-06-19)
8+
79
* Bump `compliment` to version [0.3.13](https://github.com/alexander-yakushev/compliment/blob/master/CHANGELOG.md#0313-2022-06-18).
810

911
## 0.28.4 (2022-05-18)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ lein with-profile plugin.mranderson/config install
100100
Release to [clojars](https://clojars.org/):
101101

102102
```
103-
git tag -a v0.28.4 -m "0.28.4"
103+
git tag -a v0.28.5 -m "0.28.5"
104104
git push --tags
105105
```
106106

@@ -109,7 +109,7 @@ git push --tags
109109
...Or you can use the `Makefile` as:
110110

111111
```
112-
PROJECT_VERSION=0.28.4 make install
112+
PROJECT_VERSION=0.28.5 make install
113113
```
114114

115115
## Hall of Fame

doc/antora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: cider-nrepl
22
title: CIDER nREPL
33
# The version should be in the format major.minor (e.g. 0.28).
4-
# Don't include patch in the version (e.g. 0.28.4).
4+
# Don't include patch in the version (e.g. 0.28.5).
55
version: "0.28"
66
nav:
77
- modules/ROOT/nav.adoc

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

+1-1
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.28.4)#
7+
[small]#generated from a verbose 'describe' response (cider-nrepl v0.28.5)#
88

99
== Operations
1010

doc/modules/ROOT/pages/usage.adoc

+8-8
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.28.4"]]
18+
:plugins [[cider/cider-nrepl "0.28.5"]]
1919
----
2020

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

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.28.4"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.28.5"]]}}
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.28.4"]]
34+
:dependencies [[cider/cider-nrepl "0.28.5"]]
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.7.0 -d cider/cider-nrepl:0.28.4 -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.28.5 -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.7.0"]
75-
[cider/cider-nrepl "0.28.4"]])
75+
[cider/cider-nrepl "0.28.5"]])
7676
7777
(require '[cider.tasks :refer [add-middleware]])
7878
@@ -94,7 +94,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
9494
with the following "magic" incantation:
9595

9696
----
97-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.28.4"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
97+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.28.5"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9898
----
9999

100100
There are also two convenient aliases you can employ:
@@ -104,12 +104,12 @@ There are also two convenient aliases you can employ:
104104
{...
105105
:aliases
106106
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
107-
cider/cider-nrepl {:mvn/version "0.28.4"}}
107+
cider/cider-nrepl {:mvn/version "0.28.5"}}
108108
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
109109
110110
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
111111
org.clojure/clojurescript {:mvn/version "1.10.339"}
112-
cider/cider-nrepl {:mvn/version "0.28.4"}
112+
cider/cider-nrepl {:mvn/version "0.28.5"}
113113
cider/piggieback {:mvn/version "0.5.2"}}
114114
:main-opts ["-m" "nrepl.cmdline" "--middleware"
115115
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

0 commit comments

Comments
 (0)