From 7df3e76ea2e88d0fa6959a62873dd588dc95ba22 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 3 May 2023 00:58:18 +0800 Subject: [PATCH] Fixed thumbv6m-none-eabi --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36936da7..68bb17c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ Bug fixes * Shadowed constant definitions are now optimized correctly when propagated (e.g. `const X = 1; const X = 1 + 1 + 1; X` now evaluates to 3 instead of 0). * Identifiers and comma's in the middle of custom syntax now register correctly. * Exporting an object map from a module with closures defined on properties now works correctly when those properties are called to mimic method calls in OOP-style. +* Compiling for `thumbv6m-none-eabi` target (e.g. Raspberry Pi Pico) now completes successfully. Dependency to `no-std-compat` is now pointed to the latest repo instead of `crates.io`. New features ------------