Skip to content

File tree

8 files changed

+38
-38
lines changed

8 files changed

+38
-38
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@
6969
- Bump the injected `piggieback` to [0.5.3](https://github.com/nrepl/piggieback/blob/0.5.3/CHANGES.md#053-2021-10-26).
7070
- Bump the `clojure-mode` required version to [5.17.0](https://github.com/clojure-emacs/clojure-mode/blob/v5.17.0/CHANGELOG.md#5170-2023-09-11), and use `clojure-find-ns` more safely, which fixes issues such as #[2849](https://github.com/clojure-emacs/cider/issues/2849).
7171
- Bump the `parseedn` require version, and wrap its usage with a more informative `user-error`.
72-
- Bump the injected `cider-nrepl` to [0.39.0](https://github.com/clojure-emacs/cider-nrepl/blob/v0.39.0/CHANGELOG.md#0390-2023-10-05).
72+
- Bump the injected `cider-nrepl` to [0.39.1](https://github.com/clojure-emacs/cider-nrepl/blob/v0.39.1/CHANGELOG.md#0391-2023-10-12).
7373
- Improves indentation, font-locking and other metadata support for ClojureScript.
74-
- Updates [Orchard](https://github.com/clojure-emacs/orchard/blob/v0.14.2/CHANGELOG.md)
74+
- Updates [Orchard](https://github.com/clojure-emacs/orchard/blob/v0.16.1/CHANGELOG.md#0161-2023-10-05)
7575
- introduces support for displaying the docstring and arglists of 'indirect' vars (e.g. `(def foo bar)`) for Clojure/Script.
7676
- fixes xref support across deftest vars.
77-
- Updates [Compliment](https://github.com/alexander-yakushev/compliment/blob/0.4.1/CHANGELOG.md#041-2023-08-23)
77+
- Updates [Compliment](https://github.com/alexander-yakushev/compliment/blob/0.4.4/CHANGELOG.md#044-2023-10-10)
7878
- Improves type hint propagation.
79-
- Supports better completions for `->`, `->>` and `doto`.
79+
- Supports better completions for `doto`, `->`, `->>`, `some->`, and `some->>`.
8080
- Supports better completions for var-quote (`#'some/var`).
8181
- Supports better completions for deftype field names.
82-
- Updates [Haystack](https://github.com/clojure-emacs/haystack/blob/0077b5c49f4aef1c7f89d5430d6dda2f9e7d78d4/CHANGELOG.md#020-2023-08-20).
82+
- Updates [Haystack](https://github.com/clojure-emacs/haystack/blob/v0.3.1/CHANGELOG.md#031-2023-09-29).
8383
- Now, in `*cider-error*`, more internal stackframes will be hidden under the `tooling` category.
8484
- Updates [Suitable](https://github.com/clojure-emacs/clj-suitable/blob/v0.5.0/CHANGELOG.md#050-2023-07-28)
8585
- avoiding side-effecting `->` evaluation for pure-ClojureScript chains.

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ the artifact.")
527527
(defconst cider-latest-clojure-version "1.10.1"
528528
"Latest supported version of Clojure.")
529529

530-
(defconst cider-required-middleware-version "0.39.0"
530+
(defconst cider-required-middleware-version "0.39.1"
531531
"The CIDER nREPL version that's known to work properly with CIDER.")
532532

533533
(defcustom cider-injected-middleware-version cider-required-middleware-version

dev/docker-sample-project/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
:dependencies [[org.clojure/clojure "1.11.1"]
33
[clj-http "3.12.3"]]
44
:source-paths ["src"]
5-
:plugins [[cider/cider-nrepl "0.39.0"]])
5+
:plugins [[cider/cider-nrepl "0.39.1"]])

dev/tramp-sample-project/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
:dependencies [[org.clojure/clojure "1.11.1"]
33
[clj-http "3.12.3"]]
44
:source-paths ["src"]
5-
:plugins [[cider/cider-nrepl "0.39.0"]
5+
:plugins [[cider/cider-nrepl "0.39.1"]
66
[refactor-nrepl "3.9.0"]])

doc/modules/ROOT/pages/basics/middleware_setup.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ Use the convenient plugin for defaults, either in your project's
3232

3333
[source,clojure]
3434
----
35-
:plugins [[cider/cider-nrepl "0.39.0"]]
35+
:plugins [[cider/cider-nrepl "0.39.1"]]
3636
----
3737

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

4040
[source,clojure]
4141
----
42-
{:repl {:plugins [[cider/cider-nrepl "0.39.0"]]}}
42+
{:repl {:plugins [[cider/cider-nrepl "0.39.1"]]}}
4343
----
4444

4545
WARNING: Be careful not to place this in the `:user` profile, as this way CIDER's
@@ -59,7 +59,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
5959
(require 'boot.repl)
6060
6161
(swap! boot.repl/*default-dependencies*
62-
concat '[[cider/cider-nrepl "0.39.0"]])
62+
concat '[[cider/cider-nrepl "0.39.1"]])
6363
6464
(swap! boot.repl/*default-middleware*
6565
conj 'cider.nrepl/cider-middleware)
@@ -76,11 +76,11 @@ run `cider-connect` or `cider-connect-cljs`.
7676

7777
[source,clojure]
7878
----
79-
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.39.0"}}
79+
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.39.1"}}
8080
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
8181
8282
:cider-cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.339"}
83-
cider/cider-nrepl {:mvn/version "0.39.0"}
83+
cider/cider-nrepl {:mvn/version "0.39.1"}
8484
cider/piggieback {:mvn/version "0.5.3"}}
8585
:main-opts ["-m" "nrepl.cmdline" "--middleware"
8686
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}

doc/modules/ROOT/pages/basics/up_and_running.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ simple - CIDER simply passes the extra dependencies and nREPL configuration to
6767
your build tool in the command it runs to start the nREPL server. Here's how
6868
this looks for `tools.deps`:
6969

70-
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.39.0"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
70+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.39.1"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
7171

7272
TIP: If you don't want `cider-jack-in` to inject dependencies automatically, set
7373
`cider-inject-dependencies-at-jack-in` to `nil`. Note that you'll have to setup
@@ -292,7 +292,7 @@ It is also possible for plain `clj`, although the command is somewhat longer:
292292

293293
[source,sh]
294294
----
295-
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.39.0"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
295+
$ clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.39.1"}}}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
296296
----
297297

298298
Alternatively, you can start nREPL either manually or using the facilities

doc/modules/ROOT/pages/cljs/shadow-cljs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ And connect to it with `cider-connect`.
6262
...For that to work, `shadow-cljs.edn` contents like the following are assumed:
6363

6464
```clj
65-
:dependencies [[cider/cider-nrepl "0.39.0"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
65+
:dependencies [[cider/cider-nrepl "0.39.1"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
6666
[refactor-nrepl/refactor-nrepl "3.9.0"]] ;; refactor-nrepl is optional
6767

6868
:nrepl {:middleware [cider.nrepl/cider-middleware ;; it's advisable to explicitly add this middleware. It's automatically added by shadow-cljs (if available in the classpath), unless `:nrepl {:cider false}`

0 commit comments

Comments
 (0)