Skip to content

Commit

Permalink
0.1.10 release bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
bodil committed Jul 5, 2013
1 parent f3be199 commit a7c5fe2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To setup the Leiningen plugin, add this to your `project.clj` or
`~/.lein/profiles.clj`:

```clojure
:plugins [[org.bodil/lein-noderepl "0.1.9"]]
:plugins [[org.bodil/lein-noderepl "0.1.10"]]
```

Then, start the REPL like this:
Expand All @@ -26,7 +26,7 @@ $ lein trampoline noderepl
Add the following dependency to your `project.clj`:

```clojure
[org.bodil/cljs-noderepl "0.1.9"]
[org.bodil/cljs-noderepl "0.1.10"]
```

To launch the REPL the hard way, run `lein repl` and enter the following:
Expand Down Expand Up @@ -69,7 +69,7 @@ Add the cljs-noderepl dependency to your `project.clj` (it will bring
in Piggieback transitively):

```clojure
[org.bodil/cljs-noderepl "0.1.9"]
[org.bodil/cljs-noderepl "0.1.10"]
```

You may want to add this dependency to your `:dev` profile so it's not
Expand Down
2 changes: 1 addition & 1 deletion cljs-noderepl/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org.bodil/cljs-noderepl "0.1.9"
(defproject org.bodil/cljs-noderepl "0.1.10"
:description "Node.js REPL environment for Clojurescript"
:url "https://github.com/bodil/cljs-noderepl"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion lein-noderepl/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org.bodil/lein-noderepl "0.1.9"
(defproject org.bodil/lein-noderepl "0.1.10"
:description "Leiningen plugin for launching a Node.js CLJS REPL"
:url "https://github.com/bodil/cljs-noderepl"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion lein-noderepl/src/leiningen/noderepl.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Launch a ClojureScript REPL on Node.js."
[project & args]
(require-trampoline
(let [project (deps/add-if-missing project '[org.bodil/cljs-noderepl "0.1.9"])]
(let [project (deps/add-if-missing project '[org.bodil/cljs-noderepl "0.1.10"])]
(in-project project []
(ns (:require [cljs.repl.node :as node]))
(node/run-node-repl)))))
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org.bodil/cljs-noderepl-root "0.1.9"
(defproject org.bodil/cljs-noderepl-root "0.1.10"
:description "Node.js REPL environment for Clojurescript"
:url "https://github.com/bodil/cljs-noderepl"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit a7c5fe2

Please sign in to comment.