aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2024-10-25 15:15:21 +0200
committerRon Evans <[email protected]>2024-10-25 18:22:40 +0100
commit2a76ceb7dd5ea5a834ec470b724882564d9681b3 (patch)
tree8d9c8566b26ef40f3ec29058784909f2dacf4996
parent69263e73199029aa4c1d778103952d4b3e7ea23e (diff)
downloadtinygo-2a76ceb7dd5ea5a834ec470b724882564d9681b3.tar.gz
tinygo-2a76ceb7dd5ea5a834ec470b724882564d9681b3.zip
all: version v0.34.0v0.34.0
-rw-r--r--CHANGELOG.md50
-rw-r--r--goenv/version.go2
2 files changed, 51 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 551951dfa..41c5d0593 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,53 @@
+0.34.0
+---
+* **general**
+ - fix `GOOS=wasip1` for `tinygo test`
+ - add `-C DIR` flag
+ - add initial documentation for project governance
+ - add `-ldflags='-extldflags=...'` support
+ - improve usage message with `tinygo help` and when passing invalid parameters
+* **compiler**
+ - `builder`: remove environment variables when invoking Clang, to avoid the environment changing the behavior
+ - `builder`: check for the Go toolchain version used to compile TinyGo
+ - `cgo`: add `C.CBytes` implementation
+ - `compiler`: fix passing weirdly-padded structs as parameters to new goroutines
+ - `compiler`: support pragmas on generic functions
+ - `compiler`: do not let the slice buffer escape when casting a `[]byte` or `[]rune` to a string, to help escape analysis
+ - `compiler`: conform to the latest iteration of the wasm types proposal
+ - `loader`: don't panic when main package is not named 'main'
+ - `loader`: make sure we always return type checker errors even without type errors
+ - `transform`: optimize range over `[]byte(string)`
+* **standard library**
+ - `crypto/x509`: add package stub to build crypto/x509 on macOS
+ - `machine/usb/adc/midi`: fix `PitchBend`
+ - `os`: add `Truncate` stub for baremetal
+ - `os`: add stubs for `os.File` deadlines
+ - `os`: add internal `net.newUnixFile` for the net package
+ - `runtime`: stub runtime_{Before,After}Exec for linkage
+ - `runtime`: randomize map accesses
+ - `runtime`: support `maps.Clone`
+ - `runtime`: add more fields to `MemStats`
+ - `runtime`: implement newcoro, coroswitch to support package iter
+ - `runtime`: disallow defer in interrupts
+ - `runtime`: add support for os/signal on Linux and MacOS
+ - `runtime`: add gc layout info for some basic types to help the precise GC
+ - `runtime`: bump GC mark stack size to avoid excessive heap rescans
+* **targets**
+ - `darwin`: use Go standard library syscall package instead of a custom one
+ - `fe310`: support GPIO `PinInput`
+ - `mips`: fix compiler crash with GOMIPS=softfloat and defer
+ - `mips`: add big-endian (GOARCH=mips) support
+ - `mips`: use MIPS32 (instead of MIPS32R2) as the instruction set for wider compatibility
+ - `wasi`: add relative and absolute --dir options to wasmtime args
+ - `wasip2`: add wasmtime -S args to support network interfaces
+ - `wasm`: add `//go:wasmexport` support (for all WebAssembly targets)
+ - `wasm`: use precise instead of conservative GC for WebAssembly (including WASI)
+ - `wasm-unknown`: add bulk memory flags since basically every runtime has it now
+* **boards**
+ - add RAKwireless RAK4631
+ - add WaveShare ESP-C3-32S-Kit
+
+
0.33.0
---
diff --git a/goenv/version.go b/goenv/version.go
index 9cc463402..10b2647bd 100644
--- a/goenv/version.go
+++ b/goenv/version.go
@@ -9,7 +9,7 @@ import (
// Version of TinyGo.
// Update this value before release of new version of software.
-const version = "0.34.0-dev"
+const version = "0.34.0"
var (
// This variable is set at build time using -ldflags parameters.