Skip to content

Commit

Permalink
Release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Jun 24, 2015
1 parent d75fb2d commit e63c186
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.9.0"]]
:plugins [[cider/cider-nrepl "0.9.1"]]
```

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

```clojure
{:user {:plugins [[cider/cider-nrepl "0.9.0"]]}}
{:user {:plugins [[cider/cider-nrepl "0.9.1"]]}}
```

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.9.0"]]
:dependencies [[cider/cider-nrepl "0.9.1"]]
: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.9.1-SNAPSHOT")
(def VERSION "0.9.1")

(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 @@ -2,7 +2,7 @@

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

0 comments on commit e63c186

Please sign in to comment.