diff --git a/Makefile b/Makefile index 23e1b16..ec88f9d 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PROF = dev CLJSBUILD = client CLJSDIRS = src test -VERSION = 0.2.0 +VERSION = 0.2.1 all: buildrun @@ -71,7 +71,7 @@ buildsite: demobuild gensite setversion: version=$(VERSION); \ - find . -name project.clj | \ + find . -name project.clj -o -name README.md | \ xargs -n1 sed -i "" -e 's,\(reagent "\)\([^"]*\)",\1'"$$version"'"',g tag: setversion @@ -79,6 +79,6 @@ tag: setversion echo "Tag already exists"; \ exit 1; \ else \ - git commit --allow-empty -a -m"Version "$(VERSION); \ + git commit --allow-empty -a -v -e -m"Version "$(VERSION) && \ git tag v$(VERSION); \ fi diff --git a/README.md b/README.md index 89e79e0..9df7854 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.2.0"] + [reagent "0.2.1"] 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 788f7cf..e2f1b0e 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,9 +1,9 @@ -(defproject simple-reagent "0.2.0" +(defproject simple-reagent "0.2.1" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.2.0"]] + [reagent "0.2.1"]] :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 2988cba..3f3a4cc 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,9 +1,9 @@ -(defproject todomvc-reagent "0.2.0" +(defproject todomvc-reagent "0.2.1" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [reagent "0.2.0"]] + [reagent "0.2.1"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/project.clj b/project.clj index a09819d..6a9c215 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject reagent "0.2.0" +(defproject reagent "0.2.1" :url "http://github.com/holmsand/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React"