From: Brendan Hansen Date: Tue, 2 May 2023 03:22:21 +0000 (-0500) Subject: fixed: missing `use core` in optional.onyx X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=dd5ec6273b48d738e2ac013c6c5891d81a5a838b;p=onyx.git fixed: missing `use core` in optional.onyx --- diff --git a/.gitignore b/.gitignore index b050dc0a..14426751 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ onyx-lsp.ini shared/lib/linux_x86_64/lib/libovmwasm.so bin/onyx-run bin/onyx +releases/ diff --git a/CHANGELOG b/CHANGELOG index 2b282789..491c0d7c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +Release XXX +----------- + +Additions: +* News `logo-new-256.ico` for favicon on website. + +Removals: + +Changes: + +Bugfixes: +* Fixed missing `use core` in `optional.onyx`. + - Fixes `Optional.reset` and `Optional.hash` + + + + Release v0.1.0 -------------- This release contains MANY CHANGES because I am terrible at keeping up to date with a diff --git a/core/container/optional.onyx b/core/container/optional.onyx index 0afa32ff..a544c3c7 100644 --- a/core/container/optional.onyx +++ b/core/container/optional.onyx @@ -1,5 +1,7 @@ package core +use core + // Optional is helper type that encapsulates the idea of an empty // value, without resorting to null pointers. Optionals are usually // provided as a return value from procedures that could fail. There diff --git a/docs/logos/logo-new-256.ico b/docs/logos/logo-new-256.ico new file mode 100644 index 00000000..dab3947e Binary files /dev/null and b/docs/logos/logo-new-256.ico differ