Skip to content

Commit

Permalink
1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Oct 31, 2023
1 parent f564626 commit d169887
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

## master (unreleased)

### New Features
## 1.10.0 (2023-10-31)

### New features

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

### Changes

Expand Down
6 changes: 3 additions & 3 deletions cider.el
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
;; Steve Purcell <[email protected]>
;; Maintainer: Bozhidar Batsov <[email protected]>
;; URL: http://www.github.com/clojure-emacs/cider
;; Version: 1.10.0-snapshot
;; Version: 1.10.0
;; 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"))
;; Keywords: languages, clojure, cider

Expand Down Expand Up @@ -93,10 +93,10 @@
(require 'sesman)
(require 'package)

(defconst cider-version "1.10.0-snapshot"
(defconst cider-version "1.10.0"
"The current version of CIDER.")

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

(defcustom cider-lein-command
Expand Down
2 changes: 1 addition & 1 deletion doc/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ name: cider
title: CIDER
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: ~
version: 1.10
nav:
- modules/ROOT/nav.adoc
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/basics/middleware_setup.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ NOTE: Make sure you're using https://github.com/clojurephant/clojurephant[Clojur
----
dependencies {
devImplementation 'nrepl:nrepl:0.9.0'
devImplementation 'cider:cider-nrepl:0.28.5'
devImplementation 'cider:cider-nrepl:0.42.1'
}
tasks.named('clojureRepl') {
Expand Down
4 changes: 2 additions & 2 deletions doc/modules/ROOT/pages/cljs/up_and_running.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ project or `deps.edn`):
----
;; use whatever are the most recent versions here
[cider/piggieback "0.5.3"]
[org.clojure/clojure "1.9.0"]
[org.clojure/clojure "1.11.1"]
----

as well as `piggieback` nREPL middleware:
Expand Down Expand Up @@ -61,7 +61,7 @@ or in `build.gradle`:
----
dependencies {
devImplementation 'nrepl:nrepl:0.9.0'
devImplementation 'cider:cider-nrepl:0.28.5'
devImplementation 'cider:cider-nrepl:0.42.1'
devImplementation 'cider:cider-piggieback:0.5.3'
}
Expand Down

0 comments on commit d169887

Please sign in to comment.