Skip to content

Commit d169887

Browse files
committed
1.10.0
1 parent f564626 commit d169887

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5-
### New Features
5+
## 1.10.0 (2023-10-31)
6+
7+
### New features
68

7-
- [#3555](https://github.com/clojure-emacs/cider/pull/3555): Introduce `cider-start-nrepl-server` which does the same as `cider-jack-in`
8-
but without trying to connect to the started nREPL server.
9+
- [#3555](https://github.com/clojure-emacs/cider/pull/3555): Introduce `cider-start-nrepl-server` function which does the same as `cider-jack-in`
10+
but without connecting to the started nREPL server.
911

1012
### Changes
1113

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: 1.10.0-snapshot
14+
;; Version: 1.10.0
1515
;; Package-Requires: ((emacs "26") (clojure-mode "5.18.0") (parseedn "1.2.0") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2") (transient "0.4.1"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -93,10 +93,10 @@
9393
(require 'sesman)
9494
(require 'package)
9595

96-
(defconst cider-version "1.10.0-snapshot"
96+
(defconst cider-version "1.10.0"
9797
"The current version of CIDER.")
9898

99-
(defconst cider-codename "Barcelona"
99+
(defconst cider-codename "Sant Cugat"
100100
"Codename used to denote stable releases.")
101101

102102
(defcustom cider-lein-command

doc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: cider
22
title: CIDER
33
# We always provide version without patch here (e.g. 1.1),
44
# as patch versions should not appear in the docs.
5-
version: ~
5+
version: 1.10
66
nav:
77
- modules/ROOT/nav.adoc

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ NOTE: Make sure you're using https://github.com/clojurephant/clojurephant[Clojur
9999
----
100100
dependencies {
101101
devImplementation 'nrepl:nrepl:0.9.0'
102-
devImplementation 'cider:cider-nrepl:0.28.5'
102+
devImplementation 'cider:cider-nrepl:0.42.1'
103103
}
104104
105105
tasks.named('clojureRepl') {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ project or `deps.edn`):
2626
----
2727
;; use whatever are the most recent versions here
2828
[cider/piggieback "0.5.3"]
29-
[org.clojure/clojure "1.9.0"]
29+
[org.clojure/clojure "1.11.1"]
3030
----
3131

3232
as well as `piggieback` nREPL middleware:
@@ -61,7 +61,7 @@ or in `build.gradle`:
6161
----
6262
dependencies {
6363
devImplementation 'nrepl:nrepl:0.9.0'
64-
devImplementation 'cider:cider-nrepl:0.28.5'
64+
devImplementation 'cider:cider-nrepl:0.42.1'
6565
devImplementation 'cider:cider-piggieback:0.5.3'
6666
}
6767

0 commit comments

Comments
 (0)