From 432592955ff5e8002b4b8a5afe14771404a110c4 Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Fri, 21 Feb 2014 16:31:30 +0100 Subject: [PATCH] Version 0.4.0 --- Makefile | 2 +- README.md | 2 +- examples/geometry/project.clj | 4 ++-- examples/simple/project.clj | 4 ++-- examples/todomvc/project.clj | 4 ++-- project.clj | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index ba883f6..eec6370 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PROF = dev CLJSBUILD = client CLJSDIRS = src test -VERSION = 0.3.0 +VERSION = 0.4.0 all: buildrun diff --git a/README.md b/README.md index a08ef60..0485266 100644 --- a/README.md +++ b/README.md @@ -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.3.0"] + [reagent "0.4.0"] 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 3e65fd0..e8cec66 100644 --- a/examples/geometry/project.clj +++ b/examples/geometry/project.clj @@ -1,9 +1,9 @@ -(defproject geometry-reagent "0.1.0" +(defproject geometry-reagent "0.4.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.4.0-SNAPSHOT"]] + [reagent "0.4.0"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/examples/simple/project.clj b/examples/simple/project.clj index c6dedb8..c34c9ea 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,9 +1,9 @@ -(defproject simple-reagent "0.3.0" +(defproject simple-reagent "0.4.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.3.0"]] + [reagent "0.4.0"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/examples/todomvc/project.clj b/examples/todomvc/project.clj index 548c81d..106403b 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,9 +1,9 @@ -(defproject todomvc-reagent "0.3.0" +(defproject todomvc-reagent "0.4.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.3.0"]] + [reagent "0.4.0"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/project.clj b/project.clj index 3d671c0..02f21fd 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject reagent "0.4.0-SNAPSHOT" +(defproject reagent "0.4.0" :url "http://github.com/holmsand/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React"