From 43f87869591b6ea110106a94934aff769cd324b0 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 22 Jun 2023 22:17:02 -0500 Subject: [PATCH] preparing for release 0.1.4 --- CHANGELOG | 4 ++-- compiler/src/onyx.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a9752abc..50746415 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ Release v0.1.4 ----------- -Not released +22nd June 2023 Additions: @@ -16,7 +16,7 @@ Changes: Bugfixes: - Fixed a bug that made relative imports not always relative to the current file. - - This may break some programs that were accidently using this "feature". + - This may break some programs that were accidentally using this "feature". - Fixed a bug with small a `union` over small data types, such as booleans. - There was an alignment issue, which caused the union to be smaller than expected. diff --git a/compiler/src/onyx.c b/compiler/src/onyx.c index 36e0c58f..af2819f0 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.3" +#define VERSION "v0.1.4" Context context; -- 2.25.1