Skip to content

Commit d39c735

Browse files
committed
0.38.1
1 parent ac323e0 commit d39c735

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
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.38.1 (2023-09-21)
6+
57
* Bump `orchard` to [1.5.1](https://github.com/clojure-emacs/orchard/blob/v0.15.1/CHANGELOG.md#0151-2023-09-21).
68

79
## 0.38.0 (2023-09-21)

Makefile

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

6767
lint: kondo cljfmt eastwood
6868

69-
# PROJECT_VERSION=0.38.0 make install
69+
# PROJECT_VERSION=0.38.1 make install
7070
install: dump-version check-install-env .inline-deps
7171
rm -f .no-mranderson
7272
touch .no-pedantic
@@ -75,7 +75,7 @@ install: dump-version check-install-env .inline-deps
7575
make clean
7676
git checkout resources/cider/nrepl/version.edn
7777

78-
# PROJECT_VERSION=0.38.0 make fast-install
78+
# PROJECT_VERSION=0.38.1 make fast-install
7979
fast-install: dump-version check-install-env
8080
lein with-profile -user,-dev,+$(CLOJURE_VERSION) install
8181
make clean

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ 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.38.0 make install
84+
PROJECT_VERSION=0.38.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.38.0 make fast-install
90+
PROJECT_VERSION=0.38.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.38.0 -m "Release 0.38.0"
110+
git tag -a v0.38.1 -m "Release 0.38.1"
111111
git push --tags
112112
```
113113

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

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

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

6767
----
68-
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.38.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
68+
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.38.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
6969
----
7070

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

7373
[source,clojure]
7474
----
7575
(set-env! :dependencies '[[nrepl "1.0.0"]
76-
[cider/cider-nrepl "0.38.0"]])
76+
[cider/cider-nrepl "0.38.1"]])
7777
7878
(require '[cider.tasks :refer [add-middleware]])
7979
@@ -95,7 +95,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
9595
with the following "magic" incantation:
9696

9797
----
98-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.38.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
98+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.38.1"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9999
----
100100

101101
There are also two convenient aliases you can employ:
@@ -105,12 +105,12 @@ There are also two convenient aliases you can employ:
105105
{...
106106
:aliases
107107
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
108-
cider/cider-nrepl {:mvn/version "0.38.0"}}
108+
cider/cider-nrepl {:mvn/version "0.38.1"}}
109109
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
110110
111111
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
112112
org.clojure/clojurescript {:mvn/version "1.10.339"}
113-
cider/cider-nrepl {:mvn/version "0.38.0"}
113+
cider/cider-nrepl {:mvn/version "0.38.1"}
114114
cider/piggieback {:mvn/version "0.5.2"}}
115115
:main-opts ["-m" "nrepl.cmdline" "--middleware"
116116
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

0 commit comments

Comments
 (0)