aboutsummaryrefslogtreecommitdiff
path: root/lux-lua
diff options
context:
space:
mode:
authorEduardo Julian2021-11-30 23:48:11 -0400
committerEduardo Julian2021-11-30 23:48:11 -0400
commit4334564a5e08956fbe382cdcc69c564f74c35d05 (patch)
treed130775a09e632fe1d3903ada15463728b026a7b /lux-lua
parent872c097327c0a5b3baa69e88dacd09718ddfa793 (diff)
v0.6.5
Diffstat (limited to 'lux-lua')
-rw-r--r--lux-lua/project.clj12
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"}
)