diff --git a/src/play_clj/physics.clj b/src/play_clj/physics.clj index 8c368fc..8d48b5d 100644 --- a/src/play_clj/physics.clj +++ b/src/play_clj/physics.clj @@ -124,7 +124,6 @@ (def box-2d* p2d/box-2d*) (defmacro box-2d [& body] `(p2d/box-2d ~@body)) (defmacro box-2d! [& body] `(p2d/box-2d! ~@body)) -(def body-type p2d/body-type) (defmacro body-def [& body] `(p2d/body-def ~@body)) (defmacro body! [& body] `(p2d/body! ~@body)) (defmacro joint-def [& body] `(p2d/joint-def ~@body)) diff --git a/template/project.clj b/template/project.clj index f6d6a4e..ef05669 100644 --- a/template/project.clj +++ b/template/project.clj @@ -1,4 +1,4 @@ -(defproject play-clj/lein-template "0.3.0" +(defproject play-clj/lein-template "0.3.1" :description "A template for making play-clj projects" :url "https://github.com/oakes/play-clj" :license {:name "Public Domain" diff --git a/template/src/leiningen/new/play_clj/android-project.clj b/template/src/leiningen/new/play_clj/android-project.clj index 6d7eebd..59d1ccd 100644 --- a/template/src/leiningen/new/play_clj/android-project.clj +++ b/template/src/leiningen/new/play_clj/android-project.clj @@ -7,7 +7,7 @@ [com.badlogicgames.gdx/gdx-bullet "1.0.0"] [neko/neko "3.0.1"] [org.clojure-android/clojure "1.6.0-RC1" :use-resources true] - [play-clj "0.3.0"]] + [play-clj "0.3.1"]] :profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"] [compliment "0.0.3"]] :android {:aot :all-with-unused}} diff --git a/template/src/leiningen/new/play_clj/desktop-project.clj b/template/src/leiningen/new/play_clj/desktop-project.clj index 53006eb..5f2be0e 100644 --- a/template/src/leiningen/new/play_clj/desktop-project.clj +++ b/template/src/leiningen/new/play_clj/desktop-project.clj @@ -12,7 +12,7 @@ [com.badlogicgames.gdx/gdx-platform "1.0.0" :classifier "natives-desktop"] [org.clojure/clojure "1.6.0"] - [play-clj "0.3.0"]] + [play-clj "0.3.1"]] :source-paths ["src" "src-common"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] diff --git a/template/src/leiningen/new/play_clj/ios-project.clj b/template/src/leiningen/new/play_clj/ios-project.clj index 504c612..e090513 100644 --- a/template/src/leiningen/new/play_clj/ios-project.clj +++ b/template/src/leiningen/new/play_clj/ios-project.clj @@ -5,7 +5,7 @@ [com.badlogicgames.gdx/gdx-box2d "1.0.0"] [com.badlogicgames.gdx/gdx-bullet "1.0.0"] [org.clojure/clojure "1.6.0"] - [play-clj "0.3.0"]] + [play-clj "0.3.1"]] :source-paths ["src/clojure" "../desktop/src-common"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]