diff options
author | Eduardo Julian | 2021-10-22 02:55:52 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-10-22 02:55:52 -0400 |
commit | af680e8470bf7446d9fac431f38dcc57bd60aba9 (patch) | |
tree | 70e1928a4e229d71ada897d052112f49c5ad49a5 /lux-lua | |
parent | 5b50e2ed51c37f959a06923c8d7dfd99f0c926e4 (diff) |
Deployed Rembulan on my own to remove the "-SNAPSHOT" suffix which prevents releasing lux-lua.
Diffstat (limited to 'lux-lua')
-rw-r--r-- | lux-lua/project.clj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-lua/project.clj b/lux-lua/project.clj index 73d84ef7a..edaa26154 100644 --- a/lux-lua/project.clj +++ b/lux-lua/project.clj @@ -3,7 +3,7 @@ (def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/") (def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/") -(defproject com.github.luxlang/lux-lua #=(identity version) +(defproject com.github.luxlang/lux-lua "0.6.3-SNAPSHOT" ;; #=(identity version) :description "A Lua compiler for Lux." :url ~repo :license {:name "Lux License v0.1.2" @@ -21,9 +21,9 @@ :plugins [[com.github.luxlang/lein-luxc ~version]] :dependencies [[com.github.luxlang/lux-bootstrapper ~version] [com.github.luxlang/stdlib ~version] - [net.sandius.rembulan/rembulan-runtime "0.1-SNAPSHOT"] - [net.sandius.rembulan/rembulan-stdlib "0.1-SNAPSHOT"] - [net.sandius.rembulan/rembulan-compiler "0.1-SNAPSHOT"]] + [com.github.luxlang/rembulan-runtime "0.1"] + [com.github.luxlang/rembulan-stdlib "0.1"] + [com.github.luxlang/rembulan-compiler "0.1"]] :manifest {"lux" ~version} :source-paths ["source"] |