From 69b54410aa058ad177a369402c336da07915720f Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Fri, 10 Jan 2014 14:03:47 +0100 Subject: [PATCH] Version 0.1.0 --- Makefile | 2 +- examples/simple/project.clj | 4 ++-- examples/todomvc/project.clj | 4 ++-- project.clj | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 856418c..4da7c97 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ PROF = dev,demo,test CLJSBUILD = client CLJSDIRS = src test -VERSION = 0.1.0-SNAPSHOT +VERSION = 0.1.0 all: buildrun diff --git a/examples/simple/project.clj b/examples/simple/project.clj index 756dca9..c250451 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -1,9 +1,9 @@ -(defproject simple-cloact "0.1.0-SNAPSHOT" +(defproject simple-cloact "0.1.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [cloact "0.1.0-SNAPSHOT"]] + [cloact "0.1.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 5187159..7a7772e 100644 --- a/examples/todomvc/project.clj +++ b/examples/todomvc/project.clj @@ -1,9 +1,9 @@ -(defproject todomvc-cloact "0.1.0-SNAPSHOT" +(defproject todomvc-cloact "0.1.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2138"] - [cloact "0.1.0-SNAPSHOT"]] + [cloact "0.1.0"]] :plugins [[lein-cljsbuild "1.0.1"]] :hooks [leiningen.cljsbuild] :profiles {:prod {:cljsbuild diff --git a/project.clj b/project.clj index 65df3e2..270f0a3 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ -(defproject cloact "0.1.0-SNAPSHOT" +(defproject cloact "0.1.0" :url "http://github.com/holmsand/cloact" :license {:name "MIT"} :description "A simple ClojureScript interface to React"