Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
holmsand committed Feb 3, 2014
1 parent 28c2acc commit e8b108e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PROF = dev
CLJSBUILD = client
CLJSDIRS = src test

VERSION = 0.2.1
VERSION = 0.3.0

all: buildrun

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ React components using (almost) nothing but plain ClojureScript functions.

To use Reagent you add this to your dependencies in `project.clj`:

[reagent "0.2.1"]
[reagent "0.3.0"]

You also need to include react.js itself. One way to do this is to add

Expand Down
4 changes: 2 additions & 2 deletions examples/simple/project.clj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


(defproject simple-reagent "0.2.1"
(defproject simple-reagent "0.3.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[reagent "0.2.1"]]
[reagent "0.3.0"]]
:plugins [[lein-cljsbuild "1.0.1"]]
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild
Expand Down
4 changes: 2 additions & 2 deletions examples/todomvc/project.clj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


(defproject todomvc-reagent "0.2.1"
(defproject todomvc-reagent "0.3.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[reagent "0.2.1"]]
[reagent "0.3.0"]]
:plugins [[lein-cljsbuild "1.0.1"]]
:hooks [leiningen.cljsbuild]
:profiles {:prod {:cljsbuild
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

(defproject reagent "0.3.0-SNAPSHOT"
(defproject reagent "0.3.0"
:url "http://github.com/holmsand/reagent"
:license {:name "MIT"}
:description "A simple ClojureScript interface to React"
Expand Down

0 comments on commit e8b108e

Please sign in to comment.