Skip to content

Commit d4ecb92

Browse files
committed
Release CIDER 0.10.0 (a.k.a. CIDERX)
1 parent e26ae46 commit d4ecb92

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
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.10.0 / 2015-12-03
6+
57
### New features
68

79
* [#1406](https://github.com/clojure-emacs/cider/issues/1406): When running tests, report test ns in minibuffer messages.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you like the project, please consider [supporting its ongoing development](#d
2828
**This documentation tracks the `master` branch of CIDER. Some of
2929
the features and settings discussed here might not be available in
3030
older releases (including the current stable release). Please, consult
31-
the relevant git tag (e.g. v0.9.1) if you need documentation for a
31+
the relevant git tag (e.g. v0.10.0) if you need documentation for a
3232
specific CIDER release.**
3333

3434
***
@@ -250,7 +250,7 @@ Use the convenient plugin for defaults, either in your project's
250250
A minimal `profiles.clj` for CIDER would be:
251251

252252
```clojure
253-
{:repl {:plugins [[cider/cider-nrepl "0.9.1"]]}}
253+
{:repl {:plugins [[cider/cider-nrepl "0.10.0"]]}}
254254
```
255255

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

268268
(swap! boot.repl/*default-dependencies*
269-
concat '[[cider/cider-nrepl "0.9.1"]])
269+
concat '[[cider/cider-nrepl "0.10.0"]])
270270

271271
(swap! boot.repl/*default-middleware*
272272
conj 'cider.nrepl/cider-middleware)

cider.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
;; Steve Purcell <[email protected]>
1111
;; Maintainer: Bozhidar Batsov <[email protected]>
1212
;; URL: http://www.github.com/clojure-emacs/cider
13-
;; Version: 0.10.0-cvs
13+
;; Version: 0.10.0
1414
;; Package-Requires: ((emacs "24.3") (clojure-mode "5.0.0") (pkg-info "0.4") (queue "0.1.1") (spinner "1.4") (seq "1.9"))
1515
;; Keywords: languages, clojure, cider
1616

@@ -78,7 +78,7 @@
7878

7979
(require 'seq)
8080

81-
(defconst cider-version "0.10.0-snapshot"
81+
(defconst cider-version "0.10.0"
8282
"Fallback version used when it cannot be extracted automatically.
8383
Normally it won't be used, unless `pkg-info' fails to extract the
8484
version from the CIDER package or library.")

0 commit comments

Comments
 (0)