diff options
author | Eduardo Julian | 2021-10-22 23:57:14 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-10-22 23:57:14 -0400 |
commit | 6772d0be7d36bf8a7ed4f9f5ba8e872134b809c5 (patch) | |
tree | 514764c4d3071172928227ebe07149f5eab534e8 /lux-ruby | |
parent | af680e8470bf7446d9fac431f38dcc57bd60aba9 (diff) |
v0.6.3
Diffstat (limited to 'lux-ruby')
-rw-r--r-- | lux-ruby/commands.md | 2 | ||||
-rw-r--r-- | lux-ruby/project.clj | 5 | ||||
-rw-r--r-- | lux-ruby/project.lux | 7 |
3 files changed, 8 insertions, 6 deletions
diff --git a/lux-ruby/commands.md b/lux-ruby/commands.md index f5439ea64..2503b550d 100644 --- a/lux-ruby/commands.md +++ b/lux-ruby/commands.md @@ -34,6 +34,6 @@ cd ~/lux/stdlib/ \ ``` cd ~/lux/lux-ruby/ \ -&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-ruby -Dversion=0.7.0-SNAPSHOT -Dpackaging=jar +&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-ruby -Dversion=0.6.3 -Dpackaging=jar ``` diff --git a/lux-ruby/project.clj b/lux-ruby/project.clj index 80ddde6d3..4a1029887 100644 --- a/lux-ruby/project.clj +++ b/lux-ruby/project.clj @@ -1,4 +1,4 @@ -(def version "0.6.2") +(def version "0.6.3") (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/") @@ -21,7 +21,8 @@ :plugins [[com.github.luxlang/lein-luxc ~version]] :dependencies [[com.github.luxlang/lux-bootstrapper ~version] - [com.github.luxlang/stdlib ~version] + ;; [com.github.luxlang/stdlib ~version] + [org.jruby/jruby-complete "9.2.15.0"]] :manifest {"lux" ~version} diff --git a/lux-ruby/project.lux b/lux-ruby/project.lux index a7b17ec98..7d1adfde9 100644 --- a/lux-ruby/project.lux +++ b/lux-ruby/project.lux @@ -1,5 +1,5 @@ ["" - ["identity" ["com.github.luxlang" "lux-ruby" "0.6.2"] + ["identity" ["com.github.luxlang" "lux-ruby" "0.6.3"] "description" "A Ruby compiler for Lux." "info" ["url" "https://github.com/LuxLang/lux" "scm" "https://github.com/LuxLang/lux.git" @@ -15,8 +15,9 @@ "repositories" ["https://oss.sonatype.org/content/repositories/snapshots/" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"] - "compiler" ["com.github.luxlang" "lux-jvm" "0.6.2" "jar"] - "dependencies" [["com.github.luxlang" "stdlib" "0.6.2" "tar"] + "compiler" ["com.github.luxlang" "lux-jvm" "0.6.3" "jar"] + "dependencies" [... ["com.github.luxlang" "stdlib" "0.6.3" "tar"] + ["org.jruby" "jruby-complete" "9.2.15.0" "jar"]] "program" "program"]] |