Skip to content

Commit

Permalink
Merge pull request #289 from cap10morgan/v0.10
Browse files Browse the repository at this point in the history
Set version to 0.10.2
  • Loading branch information
bbatsov committed Jan 25, 2016
2 parents b88a03e + 53ab4c8 commit 37106b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ Use the convenient plugin for defaults, either in your project's
`~/.lein/profiles.clj`.

```clojure
:plugins [[cider/cider-nrepl "0.10.0"]]
:plugins [[cider/cider-nrepl "0.10.2"]]
```

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

```clojure
{:user {:plugins [[cider/cider-nrepl "0.10.0"]]}}
{:user {:plugins [[cider/cider-nrepl "0.10.2"]]}}
```

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.10.0"]]
:dependencies [[cider/cider-nrepl "0.10.2"]]
:repl-options {:nrepl-middleware
[cider.nrepl.middleware.apropos/wrap-apropos
cider.nrepl.middleware.classpath/wrap-classpath
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.10.1")
(def VERSION "0.10.2")

(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.10.1"]
(let [version-string "0.10.2"]
(assoc (->> version-string
(re-find #"(\d+)\.(\d+)\.(\d+)-?(.*)")
rest
Expand Down

0 comments on commit 37106b6

Please sign in to comment.