Skip to content

Commit

Permalink
Release CIDER 0.12 (Seattle)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Apr 16, 2016
1 parent 21f4caa commit 1c45146
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 0.12.0 (2016-04-16)

### New Features

* Option `cider-use-tooltips` controls the display of mouse-over tooltips.
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: 0.12.0-cvs
;; Version: 0.12.0
;; Package-Requires: ((emacs "24.3") (clojure-mode "5.3.0") (pkg-info "0.4") (queue "0.1.1") (spinner "1.7") (seq "2.14"))
;; Keywords: languages, clojure, cider

Expand Down Expand Up @@ -88,12 +88,12 @@ project inference will take place."

(require 'seq)

(defconst cider-version "0.12.0-snapshot"
(defconst cider-version "0.12.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 "Bulgaria"
(defconst cider-codename "Seattle"
"Codename used to denote stable releases.")

(defcustom cider-lein-command
Expand Down
8 changes: 4 additions & 4 deletions doc/installation.md
Expand Up @@ -90,7 +90,7 @@ Use the convenient plugin for defaults, either in your project's
A minimal `profiles.clj` for CIDER would be:

```clojure
{:repl {:plugins [[cider/cider-nrepl "0.11.0"]]}}
{:repl {:plugins [[cider/cider-nrepl "0.12.0"]]}}
```

**Be careful not to place this in the `:user` profile, as this way CIDER's
Expand All @@ -106,7 +106,7 @@ all of their projects using a `~/.boot/profile.boot` file like so:
(require 'boot.repl)

(swap! boot.repl/*default-dependencies*
concat '[[cider/cider-nrepl "0.11.0"]])
concat '[[cider/cider-nrepl "0.12.0"]])

(swap! boot.repl/*default-middleware*
conj 'cider.nrepl/cider-middleware)
Expand All @@ -133,6 +133,6 @@ It goes without saying that your project should depend on `cider-nrepl`.

***

`x.y.z` should match the version of CIDER you're currently using (say `0.11.0`).
`x.y.z` should match the version of CIDER you're currently using (say `0.12.0`).
For snapshot releases of CIDER you should use the snapshot of the plugin as well
(say `0.11.0-SNAPSHOT`).
(say `0.12.0-SNAPSHOT`).

0 comments on commit 1c45146

Please sign in to comment.