Skip to content

Commit b5ad81c

Browse files
aykevldeadprogram
authored andcommitted
all: update to version 0.26.0
1 parent c2fb1e7 commit b5ad81c

File tree

2 files changed

+85
-1
lines changed

2 files changed

+85
-1
lines changed

CHANGELOG.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,87 @@
1+
0.26.0
2+
---
3+
4+
* **general**
5+
- remove support for LLVM 13
6+
- remove calls to deprecated ioutil package
7+
- move from `os.IsFoo` to `errors.Is(err, ErrFoo)`
8+
- fix for builds using an Android host
9+
- make interp timeout configurable from command line
10+
- ignore ports with VID/PID if there is no candidates
11+
- drop support for Go 1.16 and Go 1.17
12+
- update serial package to v1.3.5 for latest bugfixes
13+
- remove GOARM from `tinygo info`
14+
- add flag for setting the goroutine stack size
15+
- add serial port monitoring functionality
16+
* **compiler**
17+
- `cgo`: implement support for static functions
18+
- `cgo`: fix panic when FuncType.Results is nil
19+
- `compiler`: add aliases for `edwards25519/field.feMul` and `field.feSquare`
20+
- `compiler`: fix incorrect DWARF type in some generic parameters
21+
- `compiler`: use LLVM math builtins everywhere
22+
- `compiler`: replace some math operation bodies with LLVM intrinsics
23+
- `compiler`: replace math aliases with intrinsics
24+
- `compiler`: fix `unsafe.Sizeof` for chan and map values
25+
- `compileopts`: use tags parser from buildutil
26+
- `compileopts`: use backticks for regexp to avoid extra escapes
27+
- `compileopts`: fail fast on duplicate values in target field slices
28+
- `compileopts`: fix windows/arm target triple
29+
- `compileopts`: improve error handling when loading target/*.json
30+
- `compileopts`: add support for stlink-dap programmer
31+
- `compileopts`: do not complain about `-no-debug` on MacOS
32+
- `goenv`: support `GOOS=android`
33+
- `interp`: fix reading from external global
34+
- `loader`: fix link error for `crypto/internal/boring/sig.StandardCrypto`
35+
* **standard library**
36+
- rename assembly files to .S extension
37+
- `machine`: add PWM peripheral comments to pins
38+
- `machine`: improve UARTParity slightly
39+
- `machine`: do not export DFU_MAGIC_* constants on nrf52840
40+
- `machine`: rename `PinInputPullUp`/`PinInputPullDown`
41+
- `machine`: add `KHz`, `MHz`, `GHz` constants, deprecate `TWI_FREQ_*` constants
42+
- `machine`: remove level triggered pin interrupts
43+
- `machine`: do not expose `RESET_MAGIC_VALUE`
44+
- `machine`: use `NoPin` constant where appropriate (instead of `0` for example)
45+
- `net`: sync net.go with Go 1.18 stdlib
46+
- `os`: add `SyscallError.Timeout`
47+
- `os`: add `ErrProcessDone` error
48+
- `reflect`: implement `CanInterface` and fix string `Index`
49+
- `runtime`: make `MemStats` available to leaking collector
50+
- `runtime`: add `MemStats.TotalAlloc`
51+
- `runtime`: add `MemStats.Mallocs` and `Frees`
52+
- `runtime`: add support for `time.NewTimer` and `time.NewTicker`
53+
- `runtime`: implement `resetTimer`
54+
- `runtime`: ensure some headroom for the GC to run
55+
- `runtime`: make gc and scheduler asserts settable with build tags
56+
- `runtime/pprof`: add `WriteHeapProfile`
57+
- `runtime/pprof`: `runtime/trace`: stub some additional functions
58+
- `sync`: implement `Map.LoadAndDelete`
59+
- `syscall`: group WASI consts by purpose
60+
- `syscall`: add WASI `{D,R}SYNC`, `NONBLOCK` FD flags
61+
- `syscall`: add ENOTCONN on darwin
62+
- `testing`: add support for -benchmem
63+
* **targets**
64+
- remove USB vid/pid pair of bootloader
65+
- `esp32c3`: remove unused `UARTStopBits` constants
66+
- `nrf`: implement `GetRNG` function
67+
- `nrf`: `rp2040`: add `machine.ReadTemperature`
68+
- `nrf52`: cleanup s140v6 and s140v7 uf2 targets
69+
- `rp2040`: implement semi-random RNG based on ROSC based on pico-sdk
70+
- `wasm`: add summary of wasm examples and fix callback bug
71+
- `wasm`: do not allow undefined symbols (`--allow-undefined`)
72+
- `wasm`: make sure buffers returned by `malloc` are kept until `free` is called
73+
- `windows`: save and restore xmm registers when switching goroutines
74+
* **boards**
75+
- add Pimoroni's Tufty2040
76+
- add XIAO ESP32C3
77+
- add Adafruit QT2040
78+
- add Adafruit QT Py RP2040
79+
- `esp32c3-12f`: `matrixportal-m4`: `p1am-100`: remove duplicate build tags
80+
- `hifive1-qemu`: remove this emulated board
81+
- `wioterminal`: add UART3 for RTL8720DN
82+
- `xiao-ble`: fix usbpid
83+
84+
185
0.25.0
286
---
387

goenv/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
// Version of TinyGo.
1414
// Update this value before release of new version of software.
15-
const Version = "0.26.0-dev"
15+
const Version = "0.26.0"
1616

1717
var (
1818
// This variable is set at build time using -ldflags parameters.

0 commit comments

Comments
 (0)