Skip to content

Commit af0d1e0

Browse files
0.50.0
1 parent e7e850a commit af0d1e0

File tree

5 files changed

+15
-18
lines changed

5 files changed

+15
-18
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.50.0 (2024-08-28)
6+
57
* [#893](https://github.com/clojure-emacs/cider-nrepl/pull/893): Replace `clojure.tools.trace` with `orchard.trace`.
68
* [#894](https://github.com/clojure-emacs/cider-nrepl/pull/894): Delegate actual macroexpansion to "eval" command in middleware.macroexpand.
79
* Bump `orchard` to [0.27.1](https://github.com/clojure-emacs/orchard/blob/master/CHANGELOG.md#0271-2024-08-27).

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,21 @@ These are its main tasks for local development:
7373
make repl
7474
7575
# Run tests, using mranderson (slower but more realistic)
76-
PARSER_TARGET=parser-next make test
76+
make test
7777
7878
# Run tests, without using mranderson (considerably faster)
79-
PARSER_TARGET=parser-next make quick-test
79+
make quick-test
8080
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.49.3 make install
84+
PROJECT_VERSION=X.Y.Z 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.49.3 make fast-install
90+
PROJECT_VERSION=X.Y.Z 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.49.3 -m "Release 0.49.3"
110+
git tag -a vX.Y.Z -m "Release X.Y.Z"
111111
git push --tags
112112
```
113113

doc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: cider-nrepl
22
title: CIDER nREPL
33
# The version should be in the format major.minor (e.g. 0.28).
44
# Don't include patch in the version (e.g. 0.28.7).
5-
version: ~
5+
version: 0.50
66
nav:
77
- modules/ROOT/nav.adoc

doc/modules/ROOT/pages/compatibility.adoc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,12 @@ given compatibility tuple.
6060
| 1.8
6161
| 0.6
6262

63-
| 0.44.0
64-
| 8
65-
| 1.9
66-
| 1.0.0
67-
6863
| 0.47.0
6964
| 8
7065
| 1.9
7166
| 1.0.0
7267

73-
| 0.49.0
68+
| 0.50.0
7469
| 8
7570
| 1.10
7671
| 1.0.0

doc/modules/ROOT/pages/usage.adoc

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

1515
[source,clojure]
1616
----
17-
:plugins [[cider/cider-nrepl "0.49.3"]]
17+
:plugins [[cider/cider-nrepl "0.50.0"]]
1818
----
1919

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

2222
[source,clojure]
2323
----
24-
{:user {:plugins [[cider/cider-nrepl "0.49.3"]]}}
24+
{:user {:plugins [[cider/cider-nrepl "0.50.0"]]}}
2525
----
2626

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

3131
[source,clojure]
3232
----
33-
:dependencies [[cider/cider-nrepl "0.49.3"]]
33+
:dependencies [[cider/cider-nrepl "0.50.0"]]
3434
:repl-options {:nrepl-middleware
3535
[cider.nrepl/wrap-apropos
3636
cider.nrepl/wrap-classpath
@@ -63,7 +63,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
6363
with the following "magic" incantation:
6464

6565
----
66-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.49.3"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
66+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.50.0"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
6767
----
6868

6969
There are also two convenient aliases you can employ:
@@ -73,12 +73,12 @@ There are also two convenient aliases you can employ:
7373
{...
7474
:aliases
7575
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
76-
cider/cider-nrepl {:mvn/version "0.49.3"}}
76+
cider/cider-nrepl {:mvn/version "0.50.0"}}
7777
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
7878
7979
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
8080
org.clojure/clojurescript {:mvn/version "1.10.339"}
81-
cider/cider-nrepl {:mvn/version "0.49.3"}
81+
cider/cider-nrepl {:mvn/version "0.50.0"}
8282
cider/piggieback {:mvn/version "0.5.2"}}
8383
:main-opts ["-m" "nrepl.cmdline" "--middleware"
8484
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

0 commit comments

Comments
 (0)