Skip to content

Commit 7869c66

Browse files
committed
Time to fly - CIDER 1.2
1 parent 28591fd commit 7869c66

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

33
## master (unreleased)
44

5+
## 1.2.0 (2021-12-22)
6+
57
### New features
68

79
* Integrate [enrich-classpath](https://github.com/clojure-emacs/enrich-classpath) by default for Leiningen projects.
810
* This enables functionality related to Java sources, javadocs or parsing thereof.
911
* This can slightly slow down jack-in for the _first_ time for a given project; later on the related work will be cached.
12+
* The feature is experimental at this point and needs to be enabled with `(setq cider-enrich-classpath t)`.
1013
* [#2831](https://github.com/clojure-emacs/cider/issues/2831): Add `xref` integration, configured with customizable variables `cider-use-xref` and `cider-xref-fn-depth`.
1114
* [#3017](https://github.com/clojure-emacs/cider/issues/3017): Annotate company completion kinds.
1215
* [#3040](https://github.com/clojure-emacs/cider/pull/3040): Support invoking `cider-clojuredocs` within the `*clojuredocs*` buffer.

cider.el

Lines changed: 2 additions & 2 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.2.0-snapshot
14+
;; Version: 1.2.0
1515
;; Package-Requires: ((emacs "26") (clojure-mode "5.12") (parseedn "1.0.6") (pkg-info "0.4") (queue "0.2") (spinner "1.7") (seq "2.22") (sesman "0.3.2"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -92,7 +92,7 @@
9292
(require 'seq)
9393
(require 'sesman)
9494

95-
(defconst cider-version "1.2.0-snapshot"
95+
(defconst cider-version "1.2.0"
9696
"Fallback version used when it cannot be extracted automatically.
9797
Normally it won't be used, unless `pkg-info' fails to extract the
9898
version from the CIDER package or library.")

doc/antora.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: cider
22
title: CIDER
3-
version: "master"
3+
# We always provide version without patch here (e.g. 1.1),
4+
# as patch versions should not appear in the docs.
5+
version: "1.2"
46
nav:
57
- modules/ROOT/nav.adoc

0 commit comments

Comments
 (0)