Skip to content

Commit

Permalink
0.35.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Aug 18, 2023
1 parent 686f109 commit 97e8b25
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.35.1 (2023-08-18)

### Changes

* Bump `haystack` to [0.1.0](https://github.com/clojure-emacs/haystack/blob/v0.1.0/CHANGELOG.md#010).
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cljfmt:
kondo:
lein with-profile -user,-dev,+clj-kondo run -m clj-kondo.main --lint src .circleci/deploy

# PROJECT_VERSION=0.35.0 make install
# PROJECT_VERSION=0.35.1 make install
install: check-install-env .inline-deps
lein with-profile -user,-dev,+$(CLOJURE_VERSION),+plugin.mranderson/config install

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ lein with-profile plugin.mranderson/config install
...Or you can use the `Makefile` as:

```
PROJECT_VERSION=0.35.0 make install
PROJECT_VERSION=0.35.1 make install
```

## Releasing to Clojars
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.35.0 -m "Release 0.35.0"
git tag -a v0.35.1 -m "Release 0.35.1"
git push --tags
```

Expand Down
16 changes: 8 additions & 8 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.35.0"]]
:plugins [[cider/cider-nrepl "0.35.1"]]
----

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

[source,clojure]
----
{:user {:plugins [[cider/cider-nrepl "0.35.0"]]}}
{:user {:plugins [[cider/cider-nrepl "0.35.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.35.0"]]
:dependencies [[cider/cider-nrepl "0.35.1"]]
:repl-options {:nrepl-middleware
[cider.nrepl/wrap-apropos
cider.nrepl/wrap-classpath
Expand Down Expand Up @@ -65,15 +65,15 @@ it on the command line through the `cider.tasks/add-middleware` task
functionality):

----
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.35.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
boot -d nrepl:1.0.0 -d cider/cider-nrepl:0.35.1 -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
----

Or for all of their projects by adding a `~/.boot/profile.boot` file like so:

[source,clojure]
----
(set-env! :dependencies '[[nrepl "1.0.0"]
[cider/cider-nrepl "0.35.0"]])
[cider/cider-nrepl "0.35.1"]])
(require '[cider.tasks :refer [add-middleware]])
Expand All @@ -95,7 +95,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.35.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.35.1"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
----

There are also two convenient aliases you can employ:
Expand All @@ -105,12 +105,12 @@ There are also two convenient aliases you can employ:
{...
:aliases
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
cider/cider-nrepl {:mvn/version "0.35.0"}}
cider/cider-nrepl {:mvn/version "0.35.1"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/clojurescript {:mvn/version "1.10.339"}
cider/cider-nrepl {:mvn/version "0.35.0"}
cider/cider-nrepl {:mvn/version "0.35.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 97e8b25

Please sign in to comment.