aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2021-10-22 23:57:14 -0400
committerEduardo Julian2021-10-22 23:57:14 -0400
commit6772d0be7d36bf8a7ed4f9f5ba8e872134b809c5 (patch)
tree514764c4d3071172928227ebe07149f5eab534e8 /lux-python
parentaf680e8470bf7446d9fac431f38dcc57bd60aba9 (diff)
v0.6.3
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/commands.md2
-rw-r--r--lux-python/project.clj5
-rw-r--r--lux-python/project.lux6
3 files changed, 7 insertions, 6 deletions
diff --git a/lux-python/commands.md b/lux-python/commands.md
index 177c1ec3c..3340581a2 100644
--- a/lux-python/commands.md
+++ b/lux-python/commands.md
@@ -28,6 +28,6 @@ cd ~/lux/stdlib/ \
```
cd ~/lux/lux-python/ \
-&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-python -Dversion=0.7.0-SNAPSHOT -Dpackaging=jar
+&& mvn install:install-file -Dfile=target/program.jar -DgroupId=com.github.luxlang -DartifactId=lux-python -Dversion=0.6.3 -Dpackaging=jar
```
diff --git a/lux-python/project.clj b/lux-python/project.clj
index e174ca27d..6cac51c42 100644
--- a/lux-python/project.clj
+++ b/lux-python/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/")
@@ -20,7 +20,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.python/jython-standalone "2.7.2"]]
:manifest {"lux" ~version}
diff --git a/lux-python/project.lux b/lux-python/project.lux
index 9a3b08fa9..c835cd122 100644
--- a/lux-python/project.lux
+++ b/lux-python/project.lux
@@ -1,5 +1,5 @@
[""
- ["identity" ["com.github.luxlang" "lux-python" "0.6.2"]
+ ["identity" ["com.github.luxlang" "lux-python" "0.6.3"]
"description" "A Python compiler for Lux."
"info" ["url" "https://github.com/LuxLang/lux"
"scm" "https://github.com/LuxLang/lux.git"
@@ -15,8 +15,8 @@
"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.python" "jython-standalone" "2.7.2" "jar"]]
"program" "program"]]