diff --git a/Makefile b/Makefile index e1e20b3..4089b4f 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PROF = dev CLJSBUILD = client CLJSDIRS = src test -VERSION = 0.4.1 +VERSION = 0.4.2 all: buildrun diff --git a/README.md b/README.md index af78810..eb19f4c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Reagent provides a way to write efficient React components using (almost) nothin To use Reagent you add this to your dependencies in `project.clj`: - [reagent "0.4.1"] + [reagent "0.4.2"] You also need to include react.js itself. One way to do this is to add diff --git a/examples/geometry/project.clj b/examples/geometry/project.clj index afcee34..0be04a1 100644 --- a/examples/geometry/project.clj +++ b/examples/geometry/project.clj @@ -1,9 +1,9 @@ -(defproject geometry-reagent "0.4.1" +(defproject geometry-reagent "0.4.2" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2173"] - [reagent "0.4.1"]] + [reagent "0.4.2"]] :plugins [[lein-cljsbuild "1.0.2"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/examples/simple/project.clj b/examples/simple/project.clj index a259380..5069f09 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,9 +1,9 @@ -(defproject simple-reagent "0.4.1" +(defproject simple-reagent "0.4.2" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2173"] - [reagent "0.4.1"]] + [reagent "0.4.2"]] :plugins [[lein-cljsbuild "1.0.2"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/examples/todomvc/project.clj b/examples/todomvc/project.clj index dae02a1..3d6b5f3 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,9 +1,9 @@ -(defproject todomvc-reagent "0.4.1" +(defproject todomvc-reagent "0.4.2" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2173"] - [reagent "0.4.1"]] + [reagent "0.4.2"]] :plugins [[lein-cljsbuild "1.0.2"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/project.clj b/project.clj index 1ed1b5a..9c76ed5 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject reagent "0.4.2-SNAPSHOT" +(defproject reagent "0.4.2" :url "http://github.com/holmsand/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React"