Skip to content

Commit

Permalink
Release 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Feb 14, 2020
1 parent a126f4c commit 540a8a1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@


### New Features ### New Features


## 0.24.0 (2020-02-14)

### Bugs fixed ### Bugs fixed


* [#663](https://github.com/clojure-emacs/cider-nrepl/pull/663): Fix non-recognized `recur` inside `case` in the debugger. * [#663](https://github.com/clojure-emacs/cider-nrepl/pull/663): Fix non-recognized `recur` inside `case` in the debugger.
Expand Down
2 changes: 1 addition & 1 deletion doc/antora.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cider-nrepl name: cider-nrepl
title: CIDER nREPL title: CIDER nREPL
version: master version: 0.24
nav: nav:
- modules/ROOT/nav.adoc - modules/ROOT/nav.adoc
5 changes: 5 additions & 0 deletions doc/modules/ROOT/pages/compatibility.adoc
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ requirements were bumped to nREPL 0.6 in recent versions.
| 1.8 | 1.8
| 0.6 | 0.6


| 0.24
| 8
| 1.8
| 0.6

|=== |===


== Backwards Compatibility == Backwards Compatibility
Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/nrepl-api/ops.adoc
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file is _generated_ by #'cider.nrepl.impl.docs/-main
//// ////
= Supported nREPL operations = Supported nREPL operations
[small]#generated from a verbose 'describe' response (cider-nrepl v0.23.0-SNAPSHOT)# [small]#generated from a verbose 'describe' response (cider-nrepl v0.24.0)#


== Operations == Operations


Expand Down
16 changes: 8 additions & 8 deletions doc/modules/ROOT/pages/usage.adoc
Original file line number Original file line 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] [source,clojure]
---- ----
:plugins [[cider/cider-nrepl "0.23.0"]] :plugins [[cider/cider-nrepl "0.24.0"]]
---- ----


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


[source,clojure] [source,clojure]
---- ----
{:user {:plugins [[cider/cider-nrepl "0.23.0"]]}} {:user {:plugins [[cider/cider-nrepl "0.24.0"]]}}
---- ----


Or (if you know what you're doing) add `cider-nrepl` to your `:dev 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] [source,clojure]
---- ----
:dependencies [[cider/cider-nrepl "0.23.0"]] :dependencies [[cider/cider-nrepl "0.24.0"]]
:repl-options {:nrepl-middleware :repl-options {:nrepl-middleware
[cider.nrepl/wrap-apropos [cider.nrepl/wrap-apropos
cider.nrepl/wrap-classpath 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): functionality):


---- ----
boot -d nrepl:0.6.0 -d cider/cider-nrepl:0.23.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:0.6.0 -d cider/cider-nrepl:0.24.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
---- ----


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


[source,clojure] [source,clojure]
---- ----
(set-env! :dependencies '[[nrepl "0.6.0"] (set-env! :dependencies '[[nrepl "0.6.0"]
[cider/cider-nrepl "0.23.0"]]) [cider/cider-nrepl "0.24.0"]])
(require '[cider.tasks :refer [add-middleware]]) (require '[cider.tasks :refer [add-middleware]])
Expand All @@ -92,7 +92,7 @@ You can easily boot an nREPL server with the CIDER middleware loaded
with the following "magic" incantation: with the following "magic" incantation:


---- ----
clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.23.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]" clj -Sdeps '{:deps {cider/cider-nrepl {:mvn/version "0.24.0"} }}' -m nrepl.cmdline --middleware "[cider.nrepl/cider-middleware]"
---- ----


There are also two convenient aliases you can employ: There are also two convenient aliases you can employ:
Expand All @@ -102,12 +102,12 @@ There are also two convenient aliases you can employ:
{... {...
:aliases :aliases
{:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"} {:cider-clj {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
cider/cider-nrepl {:mvn/version "0.23.0"}} cider/cider-nrepl {:mvn/version "0.24.0"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]} :main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"} :cider-cljs {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/clojurescript {:mvn/version "1.10.339"} org.clojure/clojurescript {:mvn/version "1.10.339"}
cider/cider-nrepl {:mvn/version "0.23.0"} cider/cider-nrepl {:mvn/version "0.24.0"}
cider/piggieback {:mvn/version "0.4.1"}} cider/piggieback {:mvn/version "0.4.1"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" :main-opts ["-m" "nrepl.cmdline" "--middleware"
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}} "[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}}}
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject cider/cider-nrepl "0.24.0-SNAPSHOT" (defproject cider/cider-nrepl "0.24.0"
:description "A collection of nREPL middlewares designed to enhance Clojure editors." :description "A collection of nREPL middlewares designed to enhance Clojure editors."
:url "https://github.com/clojure-emacs/cider-nrepl" :url "https://github.com/clojure-emacs/cider-nrepl"
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"
Expand Down

0 comments on commit 540a8a1

Please sign in to comment.