diff --git a/Makefile b/Makefile index 1e89161..23e1b16 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PROF = dev CLJSBUILD = client CLJSDIRS = src test -VERSION = 0.2.0-SNAPSHOT +VERSION = 0.2.0 all: buildrun @@ -23,7 +23,7 @@ buildrun: setup lein -o with-profile $(PROF) cljsbuild auto $(CLJSBUILD) runtest: - $(MAKE) PROF=test,$(PROF) + $(MAKE) run PROF=test,$(PROF) runsite: setup (sleep 3 && open "http://127.0.0.1:$(PORT)") & diff --git a/README.md b/README.md index d5ce001..89e79e0 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.1.0"] + [reagent "0.2.0"] You also need to include react.js itself. One way to do this is to add diff --git a/examples/simple/project.clj b/examples/simple/project.clj index 4be6824..788f7cf 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,9 +1,9 @@ -(defproject simple-reagent "0.2.0-SNAPSHOT" +(defproject simple-reagent "0.2.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.2.0-SNAPSHOT"]] + [reagent "0.2.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 dde4b4e..2988cba 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,9 +1,9 @@ -(defproject todomvc-reagent "0.2.0-SNAPSHOT" +(defproject todomvc-reagent "0.2.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.2.0-SNAPSHOT"]] + [reagent "0.2.0"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/project.clj b/project.clj index 9207440..84066f1 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject reagent "0.2.0-SNAPSHOT" +(defproject reagent "0.2.0" :url "http://github.com/holmsand/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React"