Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bozhidar Batsov committed Aug 5, 2014
1 parent a04b9cb commit d8f6da0
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.7.0-SNAPSHOT"]]
:plugins [[cider/cider-nrepl "0.7.0"]]
```

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

```clojure
{:user {:plugins [[cider/cider-nrepl "0.7.0-SNAPSHOT"]]}}
{:user {:plugins [[cider/cider-nrepl "0.7.0"]]}}
```

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

```clojure
:dependencies [[cider/cider-nrepl "0.7.0-SNAPSHOT"]]
:dependencies [[cider/cider-nrepl "0.7.0"]]
:repl-options {:nrepl-middleware
[cider.nrepl.middleware.classpath/wrap-classpath
cider.nrepl.middleware.complete/wrap-complete
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.7.0-SNAPSHOT")
(def VERSION "0.7.0")

(def VERSION-FORM `(do (require 'cider-nrepl.plugin)
(alter-var-root #'cider-nrepl.plugin/version
Expand Down
2 changes: 1 addition & 1 deletion src/cider/nrepl.clj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

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

0 comments on commit d8f6da0

Please sign in to comment.