diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e233171..07947e3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +0.3.0 +--- +- **compiler** + - remove old `-initinterp` flag + - add support for macOS +- **cgo** + - add support for bool/float/complex types +- **standard library** + - `device/arm`: add support to disable/enable hardware interrupts + - `machine`: add CPU frequency for nrf-based boards + - `syscall`: add support for darwin/amd64 +- **targets** + - `circuitplay_express`: add support for this board + - `microbit`: add regular pin constants + - `samd21`: fix time function for goroutine support + - `samd21`: add support for USB-CDC (serial over USB) + - `samd21`: add support for pins in port B + - `samd21`: add support for pullup and pulldown pins + - `wasm`: add support for Safari in example + + 0.2.0 --- - **command line** diff --git a/version.go b/version.go index 1b7fb01e..5422d435 100644 --- a/version.go +++ b/version.go @@ -2,4 +2,4 @@ package main // version of this package. // Update this value before release of new version of software. -const version = "0.2.0" +const version = "0.3.0"