Skip to content

Commit 74abad1

Browse files
committed
0.47.1
1 parent 9cdc401 commit 74abad1

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
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.47.1 (2024-03-24)
6+
57
### Changes
68

79
* Bump `orchard` to [0.23.3](https://github.com/clojure-emacs/orchard/blob/v0.23.3/CHANGELOG.md#0233-2024-03-24).

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ light-kondo: clean
109109

110110
lint: kondo cljfmt eastwood
111111

112-
# PROJECT_VERSION=0.47.0 make install
112+
# PROJECT_VERSION=0.47.1 make install
113113
install: dump-version check-install-env .inline-deps
114114
rm -f .no-mranderson
115115
touch .no-pedantic
@@ -118,7 +118,7 @@ install: dump-version check-install-env .inline-deps
118118
make clean
119119
git checkout resources/cider/nrepl/version.edn
120120

121-
# PROJECT_VERSION=0.47.0 make fast-install
121+
# PROJECT_VERSION=0.47.1 make fast-install
122122
fast-install: dump-version check-install-env
123123
lein with-profile -user,-dev,+$(CLOJURE_VERSION) install
124124
make clean

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ PARSER_TARGET=parser-next make fast-test
8181
# Install the project in your local ~/.m2 directory, using mranderson (recommended)
8282
# The JVM flag is a temporary workaround.
8383
export LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true"
84-
PROJECT_VERSION=0.47.0 make install
84+
PROJECT_VERSION=0.47.1 make install
8585
8686
# Install the project in your local ~/.m2 directory, without using mranderson
8787
# (it's faster, but please only use when you repeatedly need to install cider-nrepl)
8888
# The JVM flag is a temporary workaround.
8989
export LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true"
90-
PROJECT_VERSION=0.47.0 make fast-install
90+
PROJECT_VERSION=0.47.1 make fast-install
9191
9292
# Runs clj-kondo, cljfmt and Eastwood (in that order, with fail-fast).
9393
# Please try to run this before pushing commits.
@@ -107,7 +107,7 @@ before cutting a new release.
107107
Release to [clojars](https://clojars.org/) by tagging a new release:
108108

109109
```
110-
git tag -a v0.47.0 -m "Release 0.47.0"
110+
git tag -a v0.47.1 -m "Release 0.47.1"
111111
git push --tags
112112
```
113113

doc/modules/ROOT/pages/compatibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ requirements were bumped to nREPL 0.6 in recent versions.
8585
| 1.9
8686
| 1.0.0
8787

88-
| 0.47.0
88+
| 0.47.1
8989
| 8
9090
| 1.9
9191
| 1.0.0

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

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

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.47.0"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.47.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.47.0"]]
34+
:dependencies [[cider/cider-nrepl "0.47.1"]]
3535
:repl-options {:nrepl-middleware
3636
[cider.nrepl/wrap-apropos
3737
cider.nrepl/wrap-classpath
@@ -66,15 +66,15 @@ it on the command line through the `cider.tasks/add-middleware` task
6666
functionality):
6767

6868
----
69-
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.47.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
69+
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.47.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
7070
----
7171

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

7474
[source,clojure]
7575
----
7676
(set-env! :dependencies '[[nrepl "1.0.0"]
77-
[cider/cider-nrepl "0.47.0"]])
77+
[cider/cider-nrepl "0.47.1"]])
7878
7979
(require '[cider.tasks :refer [add-middleware]])
8080
@@ -96,7 +96,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
9696
with the following "magic" incantation:
9797

9898
----
99-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.47.0"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
99+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.47.1"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
100100
----
101101

102102
There are also two convenient aliases you can employ:
@@ -106,12 +106,12 @@ There are also two convenient aliases you can employ:
106106
{...
107107
:aliases
108108
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
109-
cider/cider-nrepl {:mvn/version "0.47.0"}}
109+
cider/cider-nrepl {:mvn/version "0.47.1"}}
110110
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
111111
112112
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
113113
org.clojure/clojurescript {:mvn/version "1.10.339"}
114-
cider/cider-nrepl {:mvn/version "0.47.0"}
114+
cider/cider-nrepl {:mvn/version "0.47.1"}
115115
cider/piggieback {:mvn/version "0.5.2"}}
116116
:main-opts ["-m" "nrepl.cmdline" "--middleware"
117117
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

0 commit comments

Comments
 (0)