From: Brendan Hansen Date: Fri, 23 Jun 2023 03:17:02 +0000 (-0500) Subject: preparing for release 0.1.4 X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=43f87869591b6ea110106a94934aff769cd324b0;p=onyx.git preparing for release 0.1.4 --- 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;