From 0f9bc13a34b729d9ae9db31276feb2a66785d06b Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 14 Aug 2022 21:02:22 -0400 Subject: Documentation changes for v0.7.0 --- lux-bootstrapper/commands.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'lux-bootstrapper/commands.md') 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/ \ -- cgit v1.2.3