aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authordeadprogram <[email protected]>2023-08-25 10:25:19 +0200
committerRon Evans <[email protected]>2023-08-25 15:57:40 +0200
commitdc449882ad09c60c11cef7c35914d5fbfe22a88e (patch)
tree3e8dfe1c6de76ab910e5e482b94783121e405236
parenta158d3194fab405c08fa8b819a35b6d2f8597f90 (diff)
downloadtinygo-dc449882ad09c60c11cef7c35914d5fbfe22a88e.tar.gz
tinygo-dc449882ad09c60c11cef7c35914d5fbfe22a88e.zip
docs: update CHANGELOG for release 0.29v0.29.0
Signed-off-by: deadprogram <[email protected]>
-rw-r--r--CHANGELOG.md71
1 files changed, 71 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 48016fd04..2474a44a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,74 @@
+0.29.0
+---
+
+* **general**
+ - Go 1.21 support
+ - use https for renesas submodule #3856
+ - ci: rename release-double-zipped to something more useful
+ - ci: update Node.js from version 14 to version 16
+ - ci: switch GH actions builds to use Go 1.21 final release
+ - docker: update clang to version 15
+ - docker: use Go 1.21 for Docker dev container build
+ - `main`: add target JSON file in `tinygo info` output
+ - `main`: improve detection of filesystems
+ - `main`: use `go env` instead of doing all detection manually
+ - make: add make task to generate Renesas device wrappers
+ - make: add task to check NodeJS version before running tests
+ - add submodule for Renesas SVD file mirror repo
+ - update to go-serial package v1.6.0
+ - `testing`: add Testing function
+ - `tools/gen-device-svd`: small changes needed for Renesas MCUs
+* **compiler**
+ - `builder`: update message for max supported Go version
+ - `compiler,reflect`: NumMethods reports exported methods only
+ - `compiler`: add compiler-rt and wasm symbols to table
+ - `compiler`: add compiler-rt to wasm.json
+ - `compiler`: add min and max builtin support
+ - `compiler`: implement clear builtin for maps
+ - `compiler`: implement clear builtin for slices
+ - `compiler`: improve panic message when a runtime call is unavailable
+ - `compiler`: update .ll test output
+ - `loader`: merge go.env file which is now required starting in Go 1.21 to correctly get required packages
+* **standard library**
+ - `os`: define ErrNoDeadline
+ - `reflect`: Add FieldByNameFunc
+ - `reflect`: add SetZero
+ - `reflect`: fix iterating over maps with interface{} keys
+ - `reflect`: implement Value.Grow
+ - `reflect`: remove unecessary heap allocations
+ - `reflect`: use .key() instead of a type assert
+ - `sync`: add implementation from upstream Go for OnceFunc, OnceValue, and OnceValues
+* **targets**
+ - `machine`: UART refactor (#3832)
+ - `machine/avr`: pin change interrupt
+ - `machine/macropad_rp2040`: add machine.BUTTON
+ - `machine/nrf`: add I2C timeout
+ - `machine/nrf`: wait for stop condition after reading from the I2C bus
+ - `machine/nRF52`: set SPI TX/RX lengths even data is empty. Fixes #3868 (#3877)
+ - `machine/rp2040`: add missing suffix to CMD_READ_STATUS
+ - `machine/rp2040`: add NoPin support
+ - `machine/rp2040`: move flash related functions into separate file from C imports for correct - LSP. Fixes #3852
+ - `machine/rp2040`: wait for 1000 us after flash reset to avoid issues with busy USB bus
+ - `machine/samd51,rp2040,nrf528xx,stm32`: implement watchdog
+ - `machine/samd51`: fix i2cTimeout was decreasing due to cache activation
+ - `machine/usb`: Add support for HID Keyboard LEDs
+ - `machine/usb`: allow USB Endpoint settings to be changed externally
+ - `machine/usb`: refactor endpoint configuration
+ - `machine/usb`: remove usbDescriptorConfig
+ - `machine/usb/hid,joystick`: fix hidreport (3) (#3802)
+ - `machine/usb/hid`: add RxHandler interface
+ - `machine/usb/hid`: rename Handler() to TxHandler()
+ - `wasi`: allow zero inodes when reading directories
+ - `wasm`: add support for GOOS=wasip1
+ - `wasm`: fix functions exported through //export
+ - `wasm`: remove i64 workaround, use BigInt instead
+ - `example`: adjust time offset
+ - `example`: simplify pininterrupt
+* **boards**
+ - `targets`: add AKIZUKI DENSHI AE-RP2040
+ - `targets`: adding new uf2 target for PCA10056 (#3765)
+
+
0.28.0
---