Skip to content

Commit

Permalink
Time to fly - CIDER 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Dec 22, 2021
1 parent 28591fd commit 7869c66
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,11 +2,14 @@

## master (unreleased)

## 1.2.0 (2021-12-22)

### New features

* Integrate [enrich-classpath](https://github.com/clojure-emacs/enrich-classpath) by default for Leiningen projects.
* This enables functionality related to Java sources, javadocs or parsing thereof.
* This can slightly slow down jack-in for the _first_ time for a given project; later on the related work will be cached.
* The feature is experimental at this point and needs to be enabled with `(setq cider-enrich-classpath t)`.
* [#2831](https://github.com/clojure-emacs/cider/issues/2831): Add `xref` integration, configured with customizable variables `cider-use-xref` and `cider-xref-fn-depth`.
* [#3017](https://github.com/clojure-emacs/cider/issues/3017): Annotate company completion kinds.
* [#3040](https://github.com/clojure-emacs/cider/pull/3040): Support invoking `cider-clojuredocs` within the `*clojuredocs*` buffer.
Expand Down
4 changes: 2 additions & 2 deletions cider.el
Expand Up @@ -11,7 +11,7 @@
;; Steve Purcell <steve@sanityinc.com>
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.dev>
;; URL: http://www.github.com/clojure-emacs/cider
;; Version: 1.2.0-snapshot
;; Version: 1.2.0
;; 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"))
;; Keywords: languages, clojure, cider

Expand Down Expand Up @@ -92,7 +92,7 @@
(require 'seq)
(require 'sesman)

(defconst cider-version "1.2.0-snapshot"
(defconst cider-version "1.2.0"
"Fallback version used when it cannot be extracted automatically.
Normally it won't be used, unless `pkg-info' fails to extract the
version from the CIDER package or library.")
Expand Down
4 changes: 3 additions & 1 deletion doc/antora.yml
@@ -1,5 +1,7 @@
name: cider
title: CIDER
version: "master"
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: "1.2"
nav:
- modules/ROOT/nav.adoc

0 comments on commit 7869c66

Please sign in to comment.