From 59b3d9c69c0a2e4614bb46655543ff037748b6ac Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Tue, 17 Dec 2013 20:10:03 +0100 Subject: [PATCH] Version 0.0.2 --- Makefile | 4 ++-- examples/simple/project.clj | 4 ++-- examples/todomvc/project.clj | 4 ++-- project.clj | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 0cf561a..6387301 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ PROF = dev,test CLJSBUILD = client CLJSDIRS = src test -VERSION = 0.0.2-SNAPSHOT +VERSION = 0.0.2 # -SNAPSHOT all: buildrun @@ -19,7 +19,7 @@ leinbuild: setup lein -o cljsbuild once $(CLJSBUILD) openbrowser: - (sleep 1 && open -a "Google Chrome" site/test.html) & + (sleep 1 && open site/test.html) & buildrun: setup lein -o with-profile $(PROF) cljsbuild auto $(CLJSBUILD) diff --git a/examples/simple/project.clj b/examples/simple/project.clj index b47c68a..63f906e 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,9 +1,9 @@ -(defproject simple-cloact "0.0.2-SNAPSHOT" +(defproject simple-cloact "0.0.2" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2120"] - [cloact "0.0.2-SNAPSHOT"]] + [cloact "0.0.2"]] :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 f2cb2af..7e68477 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,9 +1,9 @@ -(defproject todomvc-cloact "0.0.2-SNAPSHOT" +(defproject todomvc-cloact "0.0.2" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2120"] - [cloact "0.0.2-SNAPSHOT"]] + [cloact "0.0.2"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/project.clj b/project.clj index 4bf9ae5..497299f 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ -(defproject cloact "0.0.2-SNAPSHOT" +(defproject cloact "0.0.2" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2120"]] :plugins [[lein-cljsbuild "1.0.1"]]