Skip to content

Commit 5885bca

Browse files
committed
Release 0.25.9
1 parent 9020417 commit 5885bca

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
## master (unreleased)
44

5+
## 0.25.9 (2021-02-13)
6+
57
### Bugs Fixed
68

79
* [cider#2979](https://github.com/clojure-emacs/cider/issues/2979): Convert non-integer numbers to strings.
10+
* Another fix for the dynamic classpath modification (in Orchard 0.6.5).
811

912
## 0.25.8 (2021-01-25)
1013

doc/modules/ROOT/pages/usage.adoc

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

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

2323
[source,clojure]
2424
----
25-
{:user {:plugins [[cider/cider-nrepl "0.25.8"]]}}
25+
{:user {:plugins [[cider/cider-nrepl "0.25.9"]]}}
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.25.8"]]
34+
:dependencies [[cider/cider-nrepl "0.25.9"]]
3535
:repl-options {:nrepl-middleware
3636
[cider.nrepl/wrap-apropos
3737
cider.nrepl/wrap-classpath
@@ -64,15 +64,15 @@ it on the command line through the `cider.tasks/add-middleware` task
6464
functionality):
6565

6666
----
67-
boot -d nrepl:0.7.0 -d cider/cider-nrepl:0.25.8 -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
67+
boot -d nrepl:0.7.0 -d cider/cider-nrepl:0.25.9 -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
6868
----
6969

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

7272
[source,clojure]
7373
----
7474
(set-env! :dependencies '[[nrepl "0.7.0"]
75-
[cider/cider-nrepl "0.25.8"]])
75+
[cider/cider-nrepl "0.25.9"]])
7676
7777
(require '[cider.tasks :refer [add-middleware]])
7878
@@ -94,7 +94,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
9494
with the following "magic" incantation:
9595

9696
----
97-
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.25.8"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
97+
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.25.9"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
9898
----
9999

100100
There are also two convenient aliases you can employ:
@@ -104,12 +104,12 @@ There are also two convenient aliases you can employ:
104104
{...
105105
:aliases
106106
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
107-
cider/cider-nrepl {:mvn/version "0.25.8"}}
107+
cider/cider-nrepl {:mvn/version "0.25.9"}}
108108
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
109109
110110
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
111111
org.clojure/clojurescript {:mvn/version "1.10.339"}
112-
cider/cider-nrepl {:mvn/version "0.25.8"}
112+
cider/cider-nrepl {:mvn/version "0.25.9"}
113113
cider/piggieback {:mvn/version "0.5.2"}}
114114
:main-opts ["-m" "nrepl.cmdline" "--middleware"
115115
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
(defproject cider/cider-nrepl "0.25.8"
1+
(defproject cider/cider-nrepl "0.25.9"
22
:description "A collection of nREPL middlewares designed to enhance Clojure editors."
33
:url "https://github.com/clojure-emacs/cider-nrepl"
44
:license {:name "Eclipse Public License"
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:scm {:name "git" :url "https://github.com/clojure-emacs/cider-nrepl"}
77
:dependencies [[nrepl "0.8.3"]
8-
^:inline-dep [cider/orchard "0.6.4"]
8+
^:inline-dep [cider/orchard "0.6.5"]
99
^:inline-dep [thunknyc/profile "0.5.2"]
1010
^:inline-dep [mvxcvi/puget "1.3.1"]
1111
^:inline-dep [fipp "0.6.23"] ; can be removed in unresolved-tree mode

0 commit comments

Comments
 (0)