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-lein/commands.md | 23 +++++++++++++++++++++++ lux-lein/project.clj | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 lux-lein/commands.md (limited to 'lux-lein') diff --git a/lux-lein/commands.md b/lux-lein/commands.md new file mode 100644 index 000000000..f716ddb46 --- /dev/null +++ b/lux-lein/commands.md @@ -0,0 +1,23 @@ +# Install + +``` +cd ~/lux/lux-lein/ \ +&& lein install +``` + +# Release + +``` +LUX_VERSION=0.7.0 && \ +cd ~/lux/lux-lein/ && \ +lein pom && \ +mv pom.xml RELEASE/lein-luxc-$LUX_VERSION.pom && \ +mv target/lein-luxc-$LUX_VERSION.jar RELEASE/lein-luxc-$LUX_VERSION.jar && \ +cd RELEASE && \ +touch README.md && \ +zip lein-luxc-$LUX_VERSION-sources.jar README.md && \ +zip lein-luxc-$LUX_VERSION-javadoc.jar README.md && \ +rm README.md && \ +for file in *.*; do gpg -ab $file; done +``` + diff --git a/lux-lein/project.clj b/lux-lein/project.clj index 9ab37a5f2..e5688c155 100644 --- a/lux-lein/project.clj +++ b/lux-lein/project.clj @@ -1,4 +1,4 @@ -(def version "0.6.6-SNAPSHOT") +(def version "0.7.0") (defproject com.github.luxlang/lein-luxc #=(identity version) :description "The Leiningen plugin for the Lux programming language." -- cgit v1.2.3