From 83d680afef80a1791720e02983f78b1f31233c30 Mon Sep 17 00:00:00 2001 From: Andrew Johnston Date: Sun, 15 Aug 2021 17:59:41 +0100 Subject: [PATCH] bump version --- Makefile | 2 +- README.md | 6 +++--- VSCode.md | 7 +++++++ install.sh | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 9d3a39f03..b20816898 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=g++ -RELEASE=0.1.2 +RELEASE=0.1.3 INSTALL=/usr/local/bin LIBS=lib/loop.js lib/path.js lib/fs.js lib/process.js lib/build.js lib/repl.js lib/acorn.js lib/configure.js MODULES=modules/net/net.o modules/epoll/epoll.o modules/fs/fs.o modules/sys/sys.o modules/vm/vm.o diff --git a/README.md b/README.md index 251b97061..2f22fd0df 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ Currently working on modern linux (debian/ubuntu and alpine tested) on x86_64 ```bash # download and run the build script -sh -c "$(curl -sSL https://raw.githubusercontent.com/just-js/just/0.1.2/install.sh)" +sh -c "$(curl -sSL https://raw.githubusercontent.com/just-js/just/current/install.sh)" # install just binary to /usr/local/bin -make -C just-0.1.2 install +make -C just install # export the just home directory -export JUST_HOME=$(pwd)/just-0.1.2 +export JUST_HOME=$(pwd)/just export JUST_TARGET=$JUST_HOME # if you don't want to install, add JUST_HOME to SPATH export PATH=$PATH:$JUST_HOME diff --git a/VSCode.md b/VSCode.md index 75354acc5..350587c59 100644 --- a/VSCode.md +++ b/VSCode.md @@ -25,6 +25,13 @@ cd just git checkout 0.1.2 ``` +or to checkout the current release, which should be stable and is just a tag of the current released version +``` +cd just +git checkout current +``` + + # Start in VSCode - open the 'just' folder in vscode diff --git a/install.sh b/install.sh index 4756fd4f2..4f2c88b0b 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -JUST_VERSION=0.1.2 +JUST_VERSION=0.1.3 curl -L -o just.tar.gz https://github.com/just-js/just/archive/${JUST_VERSION}.tar.gz tar -zxvf just.tar.gz mv just-${JUST_VERSION} just