Skip to content

Commit

Permalink
Release 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Jul 25, 2016
1 parent fa47505 commit c4856ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ Use the convenient plugin for defaults, either in your project's
`~/.lein/profiles.clj`.

```clojure
:plugins [[cider/cider-nrepl "0.12.0"]]
:plugins [[cider/cider-nrepl "0.13.0"]]
```

A minimal `profiles.clj` for CIDER would be:

```clojure
{:user {:plugins [[cider/cider-nrepl "0.12.0"]]}}
{:user {:plugins [[cider/cider-nrepl "0.13.0"]]}}
```

Or (if you know what you're doing) add `cider-nrepl` to your `:dev :dependencies` vector plus specific
middleware to `:nrepl-middleware` under `:repl-options`.

```clojure
:dependencies [[cider/cider-nrepl "0.12.0"]]
:dependencies [[cider/cider-nrepl "0.13.0"]]
:repl-options {:nrepl-middleware
[cider.nrepl.middleware.apropos/wrap-apropos
cider.nrepl.middleware.classpath/wrap-classpath
Expand Down Expand Up @@ -77,7 +77,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.12.0"]])
concat '[[cider/cider-nrepl "0.13.0"]])

(swap! boot.repl/*default-middleware*
conj 'cider.nrepl/cider-middleware)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def VERSION "0.13.0-SNAPSHOT")
(def VERSION "0.13.0")

(defproject cider/cider-nrepl VERSION
:description "nREPL middlewares for CIDER"
Expand Down
2 changes: 1 addition & 1 deletion src/cider/nrepl/version.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

(def version
"Current version of CIDER nREPL, map of :major, :minor, :incremental, and :qualifier."
(let [version-string "0.13.0-snapshot"]
(let [version-string "0.13.0"]
(assoc (->> version-string
(re-find #"(\d+)\.(\d+)\.(\d+)-?(.*)")
rest
Expand Down

0 comments on commit c4856ff

Please sign in to comment.