aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2019-03-09 17:43:52 +0100
committerRon Evans <[email protected]>2019-03-09 20:41:38 +0100
commitb1744db2c87f4b56cc3958358235ba784e78df30 (patch)
treedc7b7502731786080edee4b2828e2f0fcdf57f43
parentbd6a7b69cea0f6768252984c82913a861038d381 (diff)
downloadtinygo-b1744db2c87f4b56cc3958358235ba784e78df30.tar.gz
tinygo-b1744db2c87f4b56cc3958358235ba784e78df30.zip
main: version 0.4.0v0.4.0
-rw-r--r--CHANGELOG.md19
-rw-r--r--version.go2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 07947e3cd..8f8dc53a4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+0.4.0
+---
+- **compiler**
+ - switch to the hardfloat ABI on ARM, which is more widely used
+ - avoid a dependency on `objcopy` (`arm-none-eabi-objcopy` etc.)
+ - fix a bug in `make([]T, n)` where `n` is 64-bits on a 32-bit platform
+ - adapt to a change in the AVR backend in LLVM 8
+ - directly support the .uf2 firmware format as used on Adafruit boards
+ - fix a bug when calling `panic()` at init time outside of the main package
+ - implement nil checks, which results in a ~5% increase in code size
+ - inline slice bounds checking, which results in a ~1% decrease in code size
+- **targets**
+ - `samd21`: fix a bug in port B pins
+ - `samd21`: implement SPI peripheral
+ - `samd21`: implement ADC peripheral
+ - `stm32`: fix a bug in timekeeping
+ - `wasm`: fix a bug in `wasm_exec.js` that caused corruption in linear memory
+ when running on Node.js.
+
0.3.0
---
- **compiler**
diff --git a/version.go b/version.go
index 5422d4350..04370994e 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.3.0"
+const version = "0.4.0"