diff options
author | Eduardo Julian | 2017-01-12 18:47:51 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-01-12 18:47:51 -0400 |
commit | 129d3a169484c08d90a31fba5d8f59d39227c5fd (patch) | |
tree | d2490a799cfd22740befeb4cb0227f6cf696a400 /luxc | |
parent | 8b158ecbd330dce3603ba5e854fb21ca482c0b64 (diff) |
- v0.6.0 development has officially begun!
Diffstat (limited to '')
-rw-r--r-- | luxc/project.clj | 7 | ||||
-rw-r--r-- | luxc/src/lux/base.clj | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/luxc/project.clj b/luxc/project.clj index 84253c6f0..ecbecbb23 100644 --- a/luxc/project.clj +++ b/luxc/project.clj @@ -1,4 +1,4 @@ -(defproject com.github.luxlang/luxc-jvm "0.5.0" +(defproject com.github.luxlang/luxc-jvm "0.6.0-SNAPSHOT" :min-lein-version "2.1.0" ;; 2.1.0 introduced jar classifiers :description "The JVM compiler for the Lux programming language." :url "https://github.com/LuxLang/lux" @@ -20,11 +20,12 @@ ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]] :source-paths ["src"] - :classifiers {:sources {:resource-paths ["src"]} - :javadoc {:resource-paths ["src"]}} :scm {:name "git" :url "https://github.com/LuxLang/lux.git"} + :classifiers {:sources {:resource-paths ["src"]} + :javadoc {:resource-paths ["src"]}} + :aot [lux] :jvm-opts ^:replace ["-server" "-Xms2048m" "-Xmx2048m" diff --git a/luxc/src/lux/base.clj b/luxc/src/lux/base.clj index e0ca876ca..69dbdf5bf 100644 --- a/luxc/src/lux/base.clj +++ b/luxc/src/lux/base.clj @@ -237,7 +237,7 @@ (def ^:const +name-separator+ ";") (def ^:const ^String compiler-name "Lux/JVM") -(def ^:const ^String compiler-version "0.5.0") +(def ^:const ^String compiler-version "0.6.0") ;; Constructors (def empty-cursor (T ["" -1 -1])) |