summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-09-02 19:38:02 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-09-02 19:38:02 +0300
commit97b95f5b5bb4f9c8f439375b4238d41fd5be9926 (patch)
tree8b19d85d6764ab1c285c0648bbefd24d59e19223
parentbcbda1088b630d0bd2591d602ee6f2bd908544ca (diff)
Release 0.18.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--cider.el8
-rw-r--r--doc/installation.md4
3 files changed, 8 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b363f30d..50d974cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## master (unreleased)
+## 0.18.0 (2018-09-02)
+
### New features
* [#2375](https://github.com/clojure-emacs/cider/issues/2375): Move `cider-eval-toplevel-inside-comment-form` into clojure-mode as `clojure-toplevel-inside-comment-form` so `beginning-of-defun` is aware of comment forms.
diff --git a/cider.el b/cider.el
index 6b7d068b..bd323784 100644
--- a/cider.el
+++ b/cider.el
@@ -11,8 +11,8 @@
;; Steve Purcell <steve@sanityinc.com>
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.com>
;; URL: http://www.github.com/clojure-emacs/cider
-;; Version: 0.18.0-snapshot
-;; Package-Requires: ((emacs "25") (clojure-mode "5.9") (pkg-info "0.4") (queue "0.2") (spinner "1.7") (seq "2.16") (sesman "0.2"))
+;; Version: 0.18.0
+;; Package-Requires: ((emacs "25") (clojure-mode "5.9") (pkg-info "0.4") (queue "0.2") (spinner "1.7") (seq "2.16") (sesman "0.3"))
;; Keywords: languages, clojure, cider
;; This program is free software: you can redistribute it and/or modify
@@ -86,7 +86,7 @@
(require 'seq)
(require 'sesman)
-(defconst cider-version "0.18.0-snapshot"
+(defconst cider-version "0.18.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.")
@@ -645,7 +645,7 @@ dependencies."
Generally you should not disable this unless you run into some faulty check."
:type 'boolean
:safe #'booleanp
- :version '(cider . "0.17.0"))
+ :package-version '(cider . "0.17.0"))
(defun cider-verify-clojurescript-is-present ()
"Check whether ClojureScript is present."
diff --git a/doc/installation.md b/doc/installation.md
index fbb339c4..dd62a75c 100644
--- a/doc/installation.md
+++ b/doc/installation.md
@@ -157,7 +157,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.17.0"]]}}
+{:repl {:plugins [[cider/cider-nrepl "0.18.0"]]}}
```
!!! warning
@@ -175,7 +175,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.17.0"]])
+ concat '[[cider/cider-nrepl "0.18.0"]])
(swap! boot.repl/*default-middleware*
conj 'cider.nrepl/cider-middleware)