diff options
Diffstat (limited to 'lux-lua')
-rw-r--r-- | lux-lua/project.clj | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lux-lua/project.clj b/lux-lua/project.clj index d573b119d..d6ae33e81 100644 --- a/lux-lua/project.clj +++ b/lux-lua/project.clj @@ -1,4 +1,4 @@ -(def version "0.6.4") +(def lux_version "0.6.5") (def repo "https://github.com/LuxLang/lux") (def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/") (def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/") @@ -6,7 +6,7 @@ (def asm_version "5.0.4") (def rembulan_version "0.1") -(defproject com.github.luxlang/lux-lua #=(identity version) +(defproject com.github.luxlang/lux-lua #=(identity lux_version) :description "A Lua compiler for Lux." :url ~repo :license {:name "Lux License v0.1.2" @@ -21,9 +21,9 @@ :deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}] ["snapshots" {:url ~sonatype-snapshots :creds :gpg}]] - :plugins [[com.github.luxlang/lein-luxc ~version]] - :dependencies [[com.github.luxlang/lux-bootstrapper ~version] - ;; [com.github.luxlang/stdlib ~version] + :plugins [[com.github.luxlang/lein-luxc ~lux_version]] + :dependencies [[com.github.luxlang/lux-bootstrapper ~lux_version] + ;; [com.github.luxlang/stdlib ~lux_version] [org.ow2.asm/asm ~asm_version] [org.ow2.asm/asm-commons ~asm_version] @@ -35,7 +35,7 @@ [com.github.luxlang/rembulan-stdlib ~rembulan_version] [com.github.luxlang/rembulan-compiler ~rembulan_version]] - :manifest {"lux" ~version} + :manifest {"lux" ~lux_version} :source-paths ["source"] :lux {:program "program"} ) |