Skip to content

Commit

Permalink
0.49.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-yakushev committed Jun 30, 2024
1 parent 9599297 commit 11ae4ee
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 0.49.1 (2024-06-30)

### Changes

* [#883](https://github.com/clojure-emacs/cider-nrepl/pull/883): Reduce minimal Clojure requirement to 1.10.0.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ light-kondo: clean

lint: kondo cljfmt eastwood

# PROJECT_VERSION=0.49.0 make install
# PROJECT_VERSION=0.49.1 make install
install: dump-version check-install-env .inline-deps
rm -f .no-mranderson
touch .no-pedantic
Expand All @@ -118,7 +118,7 @@ install: dump-version check-install-env .inline-deps
make clean
git checkout resources/cider/nrepl/version.edn

# PROJECT_VERSION=0.49.0 make fast-install
# PROJECT_VERSION=0.49.1 make fast-install
fast-install: dump-version check-install-env
lein with-profile -user,-dev,+$(CLOJURE_VERSION) install
make clean
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ PARSER_TARGET=parser-next make fast-test
# Install the project in your local ~/.m2 directory, using mranderson (recommended)
# The JVM flag is a temporary workaround.
export LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true"
PROJECT_VERSION=0.49.0 make install
PROJECT_VERSION=0.49.1 make install
# Install the project in your local ~/.m2 directory, without using mranderson
# (it's faster, but please only use when you repeatedly need to install cider-nrepl)
# The JVM flag is a temporary workaround.
export LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true"
PROJECT_VERSION=0.49.0 make fast-install
PROJECT_VERSION=0.49.1 make fast-install
# Runs clj-kondo, cljfmt and Eastwood (in that order, with fail-fast).
# Please try to run this before pushing commits.
Expand All @@ -107,7 +107,7 @@ before cutting a new release.
Release to [clojars](https://clojars.org/) by tagging a new release:

```
git tag -a v0.49.0 -m "Release 0.49.0"
git tag -a v0.49.1 -m "Release 0.49.1"
git push --tags
```

Expand Down
12 changes: 6 additions & 6 deletions doc/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ Use the convenient plugin for defaults, either in your project's

[source,clojure]
----
:plugins [[cider/cider-nrepl "0.49.0"]]
:plugins [[cider/cider-nrepl "0.49.1"]]
----

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

[source,clojure]
----
{:user {:plugins [[cider/cider-nrepl "0.49.0"]]}}
{:user {:plugins [[cider/cider-nrepl "0.49.1"]]}}
----

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

[source,clojure]
----
:dependencies [[cider/cider-nrepl "0.49.0"]]
:dependencies [[cider/cider-nrepl "0.49.1"]]
:repl-options {:nrepl-middleware
[cider.nrepl/wrap-apropos
cider.nrepl/wrap-classpath
Expand Down Expand Up @@ -64,7 +64,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
with the following "magic" incantation:

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

There are also two convenient aliases you can employ:
Expand All @@ -74,12 +74,12 @@ There are also two convenient aliases you can employ:
{...
:aliases
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
cider/cider-nrepl {:mvn/version "0.49.0"}}
cider/cider-nrepl {:mvn/version "0.49.1"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/clojurescript {:mvn/version "1.10.339"}
cider/cider-nrepl {:mvn/version "0.49.0"}
cider/cider-nrepl {:mvn/version "0.49.1"}
cider/piggieback {:mvn/version "0.5.2"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware"
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}
Expand Down

0 comments on commit 11ae4ee

Please sign in to comment.