Skip to content

Commit 1c45146

Browse files
committed
Release CIDER 0.12 (Seattle)
1 parent 21f4caa commit 1c45146

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 0.12.0 (2016-04-16)
6+
57
### New Features
68

79
* Option `cider-use-tooltips` controls the display of mouse-over tooltips.

cider.el

Lines changed: 3 additions & 3 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: 0.12.0-cvs
14+
;; Version: 0.12.0
1515
;; Package-Requires: ((emacs "24.3") (clojure-mode "5.3.0") (pkg-info "0.4") (queue "0.1.1") (spinner "1.7") (seq "2.14"))
1616
;; Keywords: languages, clojure, cider
1717

@@ -88,12 +88,12 @@ project inference will take place."
8888

8989
(require 'seq)
9090

91-
(defconst cider-version "0.12.0-snapshot"
91+
(defconst cider-version "0.12.0"
9292
"Fallback version used when it cannot be extracted automatically.
9393
Normally it won't be used, unless `pkg-info' fails to extract the
9494
version from the CIDER package or library.")
9595

96-
(defconst cider-codename "Bulgaria"
96+
(defconst cider-codename "Seattle"
9797
"Codename used to denote stable releases.")
9898

9999
(defcustom cider-lein-command

doc/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Use the convenient plugin for defaults, either in your project's
9090
A minimal `profiles.clj` for CIDER would be:
9191

9292
```clojure
93-
{:repl {:plugins [[cider/cider-nrepl "0.11.0"]]}}
93+
{:repl {:plugins [[cider/cider-nrepl "0.12.0"]]}}
9494
```
9595

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

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

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

134134
***
135135

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

0 commit comments

Comments
 (0)