Skip to content

Commit b887c7f

Browse files
alexander-yakushevbbatsov
authored andcommitted
0.49.0
1 parent b59594e commit b887c7f

File tree

6 files changed

+21
-20
lines changed

6 files changed

+21
-20
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.49.0 (2024-06-02)
6+
57
### Changes
68

79
* [#877](https://github.com/clojure-emacs/cider-nrepl/pull/877): `inspect-refresh` middleware is now capable of setting all config options that `orchard.inspect` supports.

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.48.0 make install
112+
# PROJECT_VERSION=0.49.0 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.48.0 make fast-install
121+
# PROJECT_VERSION=0.49.0 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.48.0 make install
84+
PROJECT_VERSION=0.49.0 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.48.0 make fast-install
90+
PROJECT_VERSION=0.49.0 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.48.0 -m "Release 0.48.0"
110+
git tag -a v0.49.0 -m "Release 0.49.0"
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.49
66
nav:
77
- modules/ROOT/nav.adoc

doc/modules/ROOT/pages/compatibility.adoc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
== Java
44

5-
`cider-nrepl` officially targets Java 8, Java 11 and the most recent rapid
6-
release version (e.g. Java 13). More generally speaking - we aim
7-
to support all Java releases that are currently officially supported
8-
by Oracle.
5+
`cider-nrepl` officially targets Java 8, 11, 17, 21, and the most recent rapid
6+
release version (e.g. Java 22). More generally speaking - we aim to support all
7+
Java releases that are currently officially supported by Oracle.
98

109
== Clojure
1110

@@ -85,12 +84,12 @@ requirements were bumped to nREPL 0.6 in recent versions.
8584
| 1.9
8685
| 1.0.0
8786

88-
| 0.48.0
87+
| 0.47.0
8988
| 8
9089
| 1.9
9190
| 1.0.0
9291

93-
| 0.48.0
92+
| 0.49.0
9493
| 8
9594
| 1.10
9695
| 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.48.0"]]
18+
:plugins [[cider/cider-nrepl "0.49.0"]]
1919
----
2020

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

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.48.0"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.49.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.48.0"]]
34+
:dependencies [[cider/cider-nrepl "0.49.0"]]
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.48.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.49.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
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.48.0"]])
77+
[cider/cider-nrepl "0.49.0"]])
7878
7979
(require '[cider.tasks :refer [add-middleware]])
8080
@@ -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.48.0"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
97+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.49.0"} }}' -M -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.48.0"}}
107+
cider/cider-nrepl {:mvn/version "0.49.0"}}
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.48.0"}
112+
cider/cider-nrepl {:mvn/version "0.49.0"}
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)