From bb918d0fdad89dc5d5e2172d2972f773ef6b573c Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 8 Dec 2018 18:09:18 -0500 Subject: [PATCH] Update README.md. Prepare for 0.1.0 release. --- README.md | 6 ++++++ src/include/janet/janet.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8320b4f8..2fb26755 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,12 @@ Shows documentation for the doc macro. To get a list of all bindings in the default environment, use the `(all-symbols)` function. +## Installation + +Install a stable version of janet from the [releases page](https://github.com/bakpakin/janet/releases). +Janet is prebuilt for a few systems, but if you want to develop janet, run janet on a non-x86 system, or +get the latest, you must build janet from source. + ## Usage A repl is launched when the binary is invoked with no arguments. Pass the -h flag diff --git a/src/include/janet/janet.h b/src/include/janet/janet.h index 438499a0..ec5bcf1d 100644 --- a/src/include/janet/janet.h +++ b/src/include/janet/janet.h @@ -29,7 +29,7 @@ extern "C" { /***** START SECTION CONFIG *****/ -#define JANET_VERSION "0.0.0" +#define JANET_VERSION "0.1.0" #ifndef JANET_BUILD #define JANET_BUILD "local"