diff options
author | Eduardo Julian | 2022-08-14 21:02:22 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-08-14 21:02:22 -0400 |
commit | 0f9bc13a34b729d9ae9db31276feb2a66785d06b (patch) | |
tree | 25f8ec214bfe56f7dc7d8be637b06d1ab6a425f6 /lux-lein | |
parent | 24e4ccef052816f17ccfc55f2e515a07cc9c2067 (diff) |
Documentation changes for v0.7.0
Diffstat (limited to 'lux-lein')
-rw-r--r-- | lux-lein/commands.md | 23 | ||||
-rw-r--r-- | lux-lein/project.clj | 2 |
2 files changed, 24 insertions, 1 deletions
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." |