fixed: missing `use core` in optional.onyx
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Tue, 2 May 2023 03:22:21 +0000 (22:22 -0500)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Tue, 2 May 2023 03:22:21 +0000 (22:22 -0500)
.gitignore
CHANGELOG
core/container/optional.onyx
docs/logos/logo-new-256.ico [new file with mode: 0644]

index b050dc0aa0b7d164ef8207c57a8c59b94bc204eb..14426751e083dc370992e1a7490cb71deab00271 100644 (file)
@@ -21,3 +21,4 @@ onyx-lsp.ini
 shared/lib/linux_x86_64/lib/libovmwasm.so
 bin/onyx-run
 bin/onyx
+releases/
index 2b2827894a1548bcef8f992deacf092f0936728d..491c0d7cd5e5a4c82c998db3827d2c673e0275fd 100644 (file)
--- 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
index 0afa32ff487f56a0d56ecab40a007ebe96309c10..a544c3c7d322d9e88d3844e3052b42d2a4d889e4 100644 (file)
@@ -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 (file)
index 0000000..dab3947
Binary files /dev/null and b/docs/logos/logo-new-256.ico differ