Skip to content

0.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jul 04:16
· 42 commits to main since this release
  • working build with many fixes and updated to 9.1 v8 release
  • just binary in release assets is static version of runtime, which should allow it to run out of the box on modern linux on x86_64
  • to download and run
curl -L -o just https://github.com/just-js/just/releases/download/0.1.0/just
chmod +x just
./just
  • and to build a non-static version of the runtime, allowing dynamic loading of c++ modules (assumes g++, make and curl are available)
JUST_TARGET=$(pwd) ./just build
  • you should now have a non-static build of just binary in current directory
  • more fun and games to follow soon... =)