Skip to content

Commit 11ae4ee

Browse files
0.49.1
1 parent 9599297 commit 11ae4ee

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
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.1 (2024-06-30)
6+
57
### Changes
68

79
* [#883](https://github.com/clojure-emacs/cider-nrepl/pull/883): Reduce minimal Clojure requirement to 1.10.0.

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.49.0 make install
112+
# PROJECT_VERSION=0.49.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.49.0 make fast-install
121+
# PROJECT_VERSION=0.49.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.49.0 make install
84+
PROJECT_VERSION=0.49.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.49.0 make fast-install
90+
PROJECT_VERSION=0.49.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.49.0 -m "Release 0.49.0"
110+
git tag -a v0.49.1 -m "Release 0.49.1"
111111
git push --tags
112112
```
113113

doc/modules/ROOT/pages/usage.adoc

Lines changed: 6 additions & 6 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.49.0"]]
18+
:plugins [[cider/cider-nrepl "0.49.1"]]
1919
----
2020

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

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.49.0"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.49.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.49.0"]]
34+
:dependencies [[cider/cider-nrepl "0.49.1"]]
3535
:repl-options {:nrepl-middleware
3636
[cider.nrepl/wrap-apropos
3737
cider.nrepl/wrap-classpath
@@ -64,7 +64,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
6464
with the following "magic" incantation:
6565

6666
----
67-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.49.0"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
67+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.49.1"} }}' -M -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
6868
----
6969

7070
There are also two convenient aliases you can employ:
@@ -74,12 +74,12 @@ There are also two convenient aliases you can employ:
7474
{...
7575
:aliases
7676
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
77-
cider/cider-nrepl {:mvn/version "0.49.0"}}
77+
cider/cider-nrepl {:mvn/version "0.49.1"}}
7878
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
7979
8080
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
8181
org.clojure/clojurescript {:mvn/version "1.10.339"}
82-
cider/cider-nrepl {:mvn/version "0.49.0"}
82+
cider/cider-nrepl {:mvn/version "0.49.1"}
8383
cider/piggieback {:mvn/version "0.5.2"}}
8484
:main-opts ["-m" "nrepl.cmdline" "--middleware"
8585
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

0 commit comments

Comments
 (0)