diff --git a/CHANGELOG.md b/CHANGELOG.md index 37636d9b..9946f6ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Makefile b/Makefile index d6847ec7..554fce47 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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 diff --git a/README.md b/README.md index a6e9c144..7b1abfc6 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 ``` diff --git a/doc/modules/ROOT/pages/usage.adoc b/doc/modules/ROOT/pages/usage.adoc index 190292e4..f1fd1b21 100644 --- a/doc/modules/ROOT/pages/usage.adoc +++ b/doc/modules/ROOT/pages/usage.adoc @@ -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 @@ -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 @@ -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: @@ -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]"]}}}