From 6772d0be7d36bf8a7ed4f9f5ba8e872134b809c5 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 22 Oct 2021 23:57:14 -0400 Subject: v0.6.3 --- stdlib/project.clj | 4 ++-- stdlib/project.lux | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'stdlib') diff --git a/stdlib/project.clj b/stdlib/project.clj index e05e908ad..6e5e49e4e 100644 --- a/stdlib/project.clj +++ b/stdlib/project.clj @@ -1,9 +1,9 @@ -(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/") -(defproject com.github.luxlang/stdlib "0.6.3-SNAPSHOT" ;; #=(identity version) +(defproject com.github.luxlang/stdlib #=(identity version) :description "Standard library for the Lux programming language." :url ~repo diff --git a/stdlib/project.lux b/stdlib/project.lux index 57cc54d90..70692c928 100644 --- a/stdlib/project.lux +++ b/stdlib/project.lux @@ -2,7 +2,7 @@ [... An optional identity for the project. ... It can also be specified or overriden in a non-default profile. ... This will be the name given to the project when installed/deployed as a dependency. - "identity" ["com.github.luxlang" "stdlib" "0.6.3-SNAPSHOT"] + "identity" ["com.github.luxlang" "stdlib" "0.6.3"] ... Every piece of information, and the whole "info" bundle, are optional. "info" ["url" "https://github.com/LuxLang/lux" @@ -41,36 +41,36 @@ ... The following are alternative profiles to use in various situations. "jvm" [... "compiler" specifies the dependency to fetch and use as the compiler. - "compiler" ["com.github.luxlang" "lux-jvm" "0.6.2" "jar"] + "compiler" ["com.github.luxlang" "lux-jvm" "0.6.3" "jar"] ... "dependencies" is an optional list of dependencies to fetch. ... The dependencies have the same shape as when specifying the compiler. ... When omitting the packaging format of the dependency, "tar" will be assumed. ... "dependencies" [["org.ow2.asm" "asm-all" "5.0.3" "jar"] - ... ["com.github.luxlang" "stdlib" "0.6.2"]] + ... ["com.github.luxlang" "stdlib" "0.6.3"]] ... The OS command to use when running JVM tests. The default is described below. ... "java" ["java" "-jar"] ] "js" - ["compiler" ["com.github.luxlang" "lux-js" "0.6.3-SNAPSHOT" "js"] + ["compiler" ["com.github.luxlang" "lux-js" "0.6.3" "js"] ... The OS command to use when running JS tests. The default is described below. ... "js" ["node" "--stack_size=8192"] ] "python" - ["compiler" ["com.github.luxlang" "lux-python" "0.6.2" "jar"] + ["compiler" ["com.github.luxlang" "lux-python" "0.6.3" "jar"] ... The OS command to use when running Python tests. The default is described below. ... "python" ["python3"] ] "lua" - ["compiler" ["com.github.luxlang" "lux-lua" "0.6.2" "jar"] + ["compiler" ["com.github.luxlang" "lux-lua" "0.6.3" "jar"] ... The OS command to use when running Lua tests. The default is described below. ... "lua" ["lua"] ] "ruby" - ["compiler" ["com.github.luxlang" "lux-ruby" "0.6.2" "jar"] + ["compiler" ["com.github.luxlang" "lux-ruby" "0.6.3" "jar"] ... The OS command to use when running Ruby tests. The default is described below. ... "ruby" ["ruby"] ] -- cgit v1.2.3