File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ 0.4.0
2
+ ---
3
+ - ** compiler**
4
+ - switch to the hardfloat ABI on ARM, which is more widely used
5
+ - avoid a dependency on ` objcopy ` (` arm-none-eabi-objcopy ` etc.)
6
+ - fix a bug in ` make([]T, n) ` where ` n ` is 64-bits on a 32-bit platform
7
+ - adapt to a change in the AVR backend in LLVM 8
8
+ - directly support the .uf2 firmware format as used on Adafruit boards
9
+ - fix a bug when calling ` panic() ` at init time outside of the main package
10
+ - implement nil checks, which results in a ~ 5% increase in code size
11
+ - inline slice bounds checking, which results in a ~ 1% decrease in code size
12
+ - ** targets**
13
+ - ` samd21 ` : fix a bug in port B pins
14
+ - ` samd21 ` : implement SPI peripheral
15
+ - ` samd21 ` : implement ADC peripheral
16
+ - ` stm32 ` : fix a bug in timekeeping
17
+ - ` wasm ` : fix a bug in ` wasm_exec.js ` that caused corruption in linear memory
18
+ when running on Node.js.
19
+
1
20
0.3.0
2
21
---
3
22
- ** compiler**
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ package main
2
2
3
3
// version of this package.
4
4
// Update this value before release of new version of software.
5
- const version = "0.3 .0"
5
+ const version = "0.4 .0"
You can’t perform that action at this time.
0 commit comments