Skip to content

Commit

Permalink
Bump the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
emezeske committed Feb 2, 2012
1 parent befff93 commit c3d0bab
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -25,7 +25,7 @@ in the `:dev-dependencies` section:

```clojure
(defproject lein-cljsbuild-example "1.2.3"
:dev-dependencies [[lein-cljsbuild "0.0.9"]])
:dev-dependencies [[lein-cljsbuild "0.0.10"]])
```

Make sure you pull down the jar file:
Expand All @@ -47,7 +47,7 @@ of your `project.clj` file. A simple project might look like this:

```clojure
(defproject lein-cljsbuild-example "1.2.3"
:dev-dependencies [[lein-cljsbuild "0.0.9"]]
:dev-dependencies [[lein-cljsbuild "0.0.10"]]
:cljsbuild {
; The path to the top-level ClojureScript source directory:
:source-path "src-cljs"
Expand Down Expand Up @@ -105,7 +105,7 @@ ClojureScript project, and will build all of them in parallel:

```clojure
(defproject lein-cljsbuild-example "1.2.3"
:dev-dependencies [[lein-cljsbuild "0.0.9"]]
:dev-dependencies [[lein-cljsbuild "0.0.10"]]
:cljsbuild
[{:source-path "src-cljs-main"
:compiler {:output-to "main.js"}}
Expand Down Expand Up @@ -162,7 +162,7 @@ And your `project.clj` file looks like this:

```clojure
(defproject lein-cljsbuild-example "1.2.3"
:dev-dependencies [[lein-cljsbuild "0.0.9"]]
:dev-dependencies [[lein-cljsbuild "0.0.10"]]
:source-path "src-clj"
:cljsbuild {
:source-path "src-cljs"
Expand Down
4 changes: 2 additions & 2 deletions example-projects/advanced/project.clj
@@ -1,10 +1,10 @@
(defproject cljsbuild-example-advanced "0.0.9"
(defproject cljsbuild-example-advanced "0.0.10"
:description "An advanced example of how to use lein-cljsbuild"
:source-path "src-clj"
:dependencies [[org.clojure/clojure "1.3.0"]
[compojure "0.6.5"]
[hiccup "0.3.7"]]
:dev-dependencies [[lein-cljsbuild "0.0.9"]
:dev-dependencies [[lein-cljsbuild "0.0.10"]
[lein-ring "0.5.0"]]
:hooks [leiningen.cljsbuild]
:cljsbuild [{:source-path "src-cljs"
Expand Down
4 changes: 2 additions & 2 deletions example-projects/simple/project.clj
@@ -1,10 +1,10 @@
(defproject cljsbuild-example-simple "0.0.9"
(defproject cljsbuild-example-simple "0.0.10"
:description "A simple example of how to use lein-cljsbuild"
:source-path "src-clj"
:dependencies [[org.clojure/clojure "1.3.0"]
[compojure "0.6.5"]
[hiccup "0.3.7"]]
:dev-dependencies [[lein-cljsbuild "0.0.9"]
:dev-dependencies [[lein-cljsbuild "0.0.10"]
[lein-ring "0.5.0"]]
:cljsbuild {:source-path "src-cljs"
:compiler {:output-to "resources/public/js/main.js"
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject lein-cljsbuild "0.0.9"
(defproject lein-cljsbuild "0.0.10"
:description "ClojureScript Autobuilder Plugin"
:url "http://github.com/emezeske/lein-cljsbuild"
:license {:name "Eclipse Public License - v 1.0"
Expand Down
2 changes: 1 addition & 1 deletion sample.project.clj
Expand Up @@ -10,7 +10,7 @@
:dependencies [[org.clojure/clojure "1.3.0"]]
; Your project should depend on lein-cljsbuild, to ensure that
; the right version of the plugin is installed.
:dev-dependencies [[lein-cljsbuild "0.0.9"]]
:dev-dependencies [[lein-cljsbuild "0.0.10"]]
; The standard Leiningen :source-path option is used by lein-cljsbuild
; to determine the source directory from which crossover files will
; be copied. Leiningen defaults to "src".
Expand Down

0 comments on commit c3d0bab

Please sign in to comment.