diff --git a/CHANGELOG.md b/CHANGELOG.md index 85238bc71..f61aa4385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +0.40.1 +--- +* **machine** + - nrf: fix flash writes when SoftDevice is enabled +* **runtime** + - runtime: avoid fixed math/rand sequence on RP2040/RP2350 (#5124) + - runtime: add calls to initRand() during run() for all schedulers + - runtime: call initRand() before initHeap() during initialization + - runtime: use rand_hwrng hardwareRand for RP2040/RP2350 (#5135) +* **libs** + - picolibc: use updated location for git repo + 0.40.0 --- * **general** diff --git a/goenv/version.go b/goenv/version.go index 9e790bbd6..423f95906 100644 --- a/goenv/version.go +++ b/goenv/version.go @@ -10,7 +10,7 @@ import ( // Version of TinyGo. // Update this value before release of new version of software. -const version = "0.40.0" +const version = "0.40.1" // Return TinyGo version, either in the form 0.30.0 or as a development version // (like 0.30.0-dev-abcd012).