Skip to content

Commit

Permalink
Release CIDER 1.0 ("Sofia")
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Dec 28, 2020
1 parent b6bc3bc commit 140b062
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 1.0.0 (2020-28-12)

### New features

* [#2909](https://github.com/clojure-emacs/cider/issues/2909): Add new customization variable `cider-inspector-auto-select-buffer` to control the auto selection of the inspector buffer.
Expand All @@ -11,12 +13,12 @@

* Fix broken links to the docs in REPL warnings (the REPL links included the full CIDER version, but the docs URLs are without the patch version).
* [#2916](https://github.com/clojure-emacs/cider/issues/2916): Fix ordering of dependencies, global-opts and params for Clojure CLI projects when calling `cider-jack-in`.
* [#2929](https://github.com/clojure-emacs/cider/issues/2929): Fix handling of reader tags or metadata when calling `cider-eval-last-sexp-and-replace`
* [#2929](https://github.com/clojure-emacs/cider/issues/2929): Fix handling of reader tags or metadata when calling `cider-eval-last-sexp-and-replace`.

### Changes

* Bump the injected nREPL version to 0.8.3.
* Bump the injected `cider-nrepl` version to `0.25.5`.
* Bump the injected `cider-nrepl` version to 0.25.5.
* Bump the injected Piggieback version to 0.5.2. See [this issue](https://github.com/nrepl/piggieback/issues/118) for details.
* [#2897](https://github.com/clojure-emacs/cider/pull/2897): Translate paths from CIDER to nREPL and vice-versa.
* Set `cider-prompt-for-symbol` to `nil` by default.
Expand Down
6 changes: 3 additions & 3 deletions cider.el
Expand Up @@ -11,7 +11,7 @@
;; Steve Purcell <steve@sanityinc.com>
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.com>
;; URL: http://www.github.com/clojure-emacs/cider
;; Version: 1.0.0-snapshot
;; Version: 1.0.0
;; Package-Requires: ((emacs "25") (clojure-mode "5.12") (parseedn "0.2") (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,12 +92,12 @@
(require 'seq)
(require 'sesman)

(defconst cider-version "1.0.0-snapshot"
(defconst cider-version "1.0.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.")

(defconst cider-codename "Nesebar"
(defconst cider-codename "Sofia"
"Codename used to denote stable releases.")

(defcustom cider-lein-command
Expand Down
2 changes: 1 addition & 1 deletion doc/antora.yml
@@ -1,5 +1,5 @@
name: cider
title: CIDER
version: master
version: "1.0"
nav:
- modules/ROOT/nav.adoc

0 comments on commit 140b062

Please sign in to comment.