Skip to content

Commit ce42702

Browse files
committed
Release CIDER 0.23 ("Lima")
1 parent b932f20 commit ce42702

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 0.23.0 (2019-10-08)
6+
57
### New features
68

79
* New configuration variable `cider-result-overlay-position` determining where debugger and inline eval result overlays should be displayed. Current options are 'at-eol and 'at-point.

cider-overlays.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If 'at-point, display at the end of the respective sexp."
7878
:group 'cider
7979
:type ''(choice (const :tag "End of line" at-eol)
8080
(const :tag "End of sexp" at-point))
81-
:package-version '(cider . "0.22.1"))
81+
:package-version '(cider . "0.23.0"))
8282

8383
(defcustom cider-eval-result-prefix "=> "
8484
"The prefix displayed in the minibuffer before a result value."

cider.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
;; Steve Purcell <[email protected]>
1212
;; Maintainer: Bozhidar Batsov <[email protected]>
1313
;; URL: http://www.github.com/clojure-emacs/cider
14-
;; Version: 0.23.0-snapshot
14+
;; Version: 0.23.0
1515
;; Package-Requires: ((emacs "25") (clojure-mode "5.9") (parseedn "0.1") (pkg-info "0.4") (queue "0.2") (spinner "1.7") (seq "2.16") (sesman "0.3.2"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -87,7 +87,7 @@
8787
(require 'seq)
8888
(require 'sesman)
8989

90-
(defconst cider-version "0.23.0-snapshot"
90+
(defconst cider-version "0.23.0"
9191
"Fallback version used when it cannot be extracted automatically.
9292
Normally it won't be used, unless `pkg-info' fails to extract the
9393
version from the CIDER package or library.")
@@ -404,7 +404,7 @@ Elements of the list are artifact name and list of exclusions to apply for the a
404404
(defconst cider-latest-clojure-version "1.10.0"
405405
"Latest supported version of Clojure.")
406406

407-
(defconst cider-required-middleware-version "0.22.4-SNAPSHOT"
407+
(defconst cider-required-middleware-version "0.22.4"
408408
"The CIDER nREPL version that's known to work properly with CIDER.")
409409

410410
(defcustom cider-jack-in-auto-inject-clojure nil

doc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cider
22
title: CIDER
3-
version: master
3+
version: "0.23"
44
nav:
55
- modules/ROOT/nav.adoc

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ run `cider-connect` or `cider-connect-cljs`.
7575

7676
[source,clojure]
7777
----
78-
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.22.3"}}
78+
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.22.4"}}
7979
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
8080
8181
:cider-cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.339"}
82-
cider/cider-nrepl {:mvn/version "0.22.3"}
82+
cider/cider-nrepl {:mvn/version "0.22.4"}
8383
cider/piggieback {:mvn/version "0.4.2"}}
8484
:main-opts ["-m" "nrepl.cmdline" "--middleware"
8585
"[cider.nrepl/cider-middleware,cider.piggieback/wrap-cljs-repl]"]}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ simple - CIDER simply passes the extra dependencies and nREPL configuration to
5555
your build tool in the command in runs to start the nREPL server. Here's how
5656
this looks for `tools.deps`:
5757

58-
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.22.1"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
58+
$ clojure -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} cider/cider-nrepl {:mvn/version "0.22.4"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]'
5959

6060
TIP: If you don't want `cider-jack-in` to inject dependencies automatically, set
6161
`cider-inject-dependencies-at-jack-in` to `nil`. Note that you'll have to setup

0 commit comments

Comments
 (0)