From: Brendan Hansen Date: Mon, 15 May 2023 18:18:34 +0000 (-0500) Subject: release: 0.1.1a X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=8b193e34ae2e1a81be92510c7bd77360867ff47e;p=onyx.git release: 0.1.1a --- diff --git a/CHANGELOG b/CHANGELOG index b908a374..56b6cbd7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +Release v0.1.1a +----------- +15th May 2023 + +Additions: + +Removals: + +Changes: +* Javascript now supports time at the platform layer. + - Expects import "host.time" + +Bugfixes: +* Fixed javascript runtime not compiling due to missing dependency on `core.os`. + + Release v0.1.1 ----------- 15th May 2023 diff --git a/compiler/src/onyx.c b/compiler/src/onyx.c index 8de0c8b2..99e1b701 100644 --- a/compiler/src/onyx.c +++ b/compiler/src/onyx.c @@ -19,7 +19,7 @@ extern struct bh_allocator global_heap_allocator; #include "wasm_emit.h" #include "doc.h" -#define VERSION "v0.1.1" +#define VERSION "v0.1.1a" Context context;