Skip to content

Commit

Permalink
Release 0.25.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Feb 13, 2021
1 parent 9020417 commit 5885bca
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

## master (unreleased)

## 0.25.9 (2021-02-13)

### Bugs Fixed

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

## 0.25.8 (2021-01-25)

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.25.8"]]
:plugins [[cider/cider-nrepl "0.25.9"]]
----

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

[source,clojure]
----
{:user {:plugins [[cider/cider-nrepl "0.25.8"]]}}
{:user {:plugins [[cider/cider-nrepl "0.25.9"]]}}
----

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.25.8"]]
:dependencies [[cider/cider-nrepl "0.25.9"]]
:repl-options {:nrepl-middleware
[cider.nrepl/wrap-apropos
cider.nrepl/wrap-classpath
Expand Down Expand Up @@ -64,15 +64,15 @@ it on the command line through the `cider.tasks/add-middleware` task
functionality):

----
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
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
----

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

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

There are also two convenient aliases you can employ:
Expand All @@ -104,12 +104,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.25.8"}}
cider/cider-nrepl {:mvn/version "0.25.9"}}
: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.25.8"}
cider/cider-nrepl {:mvn/version "0.25.9"}
cider/piggieback {:mvn/version "0.5.2"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware"
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(defproject cider/cider-nrepl "0.25.8"
(defproject cider/cider-nrepl "0.25.9"
:description "A collection of nREPL middlewares designed to enhance Clojure editors."
:url "https://github.com/clojure-emacs/cider-nrepl"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git" :url "https://github.com/clojure-emacs/cider-nrepl"}
:dependencies [[nrepl "0.8.3"]
^:inline-dep [cider/orchard "0.6.4"]
^:inline-dep [cider/orchard "0.6.5"]
^:inline-dep [thunknyc/profile "0.5.2"]
^:inline-dep [mvxcvi/puget "1.3.1"]
^:inline-dep [fipp "0.6.23"] ; can be removed in unresolved-tree mode
Expand Down

0 comments on commit 5885bca

Please sign in to comment.