From 8b193e34ae2e1a81be92510c7bd77360867ff47e Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Mon, 15 May 2023 13:18:34 -0500 Subject: [PATCH] release: 0.1.1a --- CHANGELOG | 16 ++++++++++++++++ compiler/src/onyx.c | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) 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; -- 2.25.1