mirror of
https://github.com/status-im/reagent.git
synced 2025-01-12 04:44:27 +00:00
Version 0.2.1
This commit is contained in:
parent
23a5f80197
commit
68da921e35
6
Makefile
6
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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user