aboutsummaryrefslogtreecommitdiff
path: root/lux-bootstrapper
diff options
context:
space:
mode:
authorEduardo Julian2022-08-14 21:02:22 -0400
committerEduardo Julian2022-08-14 21:02:22 -0400
commit0f9bc13a34b729d9ae9db31276feb2a66785d06b (patch)
tree25f8ec214bfe56f7dc7d8be637b06d1ab6a425f6 /lux-bootstrapper
parent24e4ccef052816f17ccfc55f2e515a07cc9c2067 (diff)
Documentation changes for v0.7.0
Diffstat (limited to 'lux-bootstrapper')
-rw-r--r--lux-bootstrapper/commands.md22
-rw-r--r--lux-bootstrapper/project.clj2
2 files changed, 19 insertions, 5 deletions
diff --git a/lux-bootstrapper/commands.md b/lux-bootstrapper/commands.md
index 33fa874ba..ca8436c3b 100644
--- a/lux-bootstrapper/commands.md
+++ b/lux-bootstrapper/commands.md
@@ -1,6 +1,4 @@
-# Old/bootstrapping compiler
-
-## Build & install
+# Install
```
cd ~/lux/lux-bootstrapper/ \
@@ -8,7 +6,23 @@ cd ~/lux/lux-bootstrapper/ \
&& lein install
```
-## Run JBE (Read generated bytecode)
+# Release
+
+```
+LUX_VERSION=0.7.0 && \
+cd ~/lux/lux-bootstrapper/ && \
+lein pom && \
+mv pom.xml RELEASE/lux-bootstrapper-$LUX_VERSION.pom && \
+cp ~/.m2/repository/com/github/luxlang/lux-bootstrapper/$LUX_VERSION/lux-bootstrapper-$LUX_VERSION.jar RELEASE && \
+cd RELEASE && \
+touch README.md && \
+zip lux-bootstrapper-$LUX_VERSION-sources.jar README.md && \
+zip lux-bootstrapper-$LUX_VERSION-javadoc.jar README.md && \
+rm README.md && \
+for file in *.*; do gpg -ab $file; done
+```
+
+# Run JBE (Read generated bytecode)
```
cd ~/lux/jbe/bin/ \
diff --git a/lux-bootstrapper/project.clj b/lux-bootstrapper/project.clj
index 28f798f47..c97ecece2 100644
--- a/lux-bootstrapper/project.clj
+++ b/lux-bootstrapper/project.clj
@@ -1,4 +1,4 @@
-(def version "0.6.6-SNAPSHOT")
+(def version "0.7.0")
(defproject com.github.luxlang/lux-bootstrapper #=(identity version)
:min-lein-version "2.1.0" ;; 2.1.0 introduced jar classifiers