diff options
author | Ayke van Laethem <[email protected]> | 2020-04-21 16:16:35 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-04-21 17:02:43 +0200 |
commit | a9ba6ebad9ad85cacd9674a1af9229489a811f68 (patch) | |
tree | a40b46dcf7c8ca1103be2622a2928f0c82003113 | |
parent | 565ff99c31d4f89376b20bd7e3c9cf0bfb8c7810 (diff) | |
download | tinygo-a9ba6ebad9ad85cacd9674a1af9229489a811f68.tar.gz tinygo-a9ba6ebad9ad85cacd9674a1af9229489a811f68.zip |
main: version 0.13.1v0.13.1
This release fixes a few bugs introduced in the previous 0.13.0 release.
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | version.go | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b040f06..a90c35e0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +0.13.1 +--- +* **standard library** + - `runtime`: do not put scheduler and GC code in the same section + - `runtime`: copy stack scan assembly for GBA +* **boards** + - `gameboy-advance`: always use ARM mode instead of Thumb mode + + 0.13.0 --- * **command line** diff --git a/version.go b/version.go index 4bcbe4476..44e4994c3 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.13.0" +const version = "0.13.1" |