diff options
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])) |