From a9ba6ebad9ad85cacd9674a1af9229489a811f68 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Tue, 21 Apr 2020 16:16:35 +0200 Subject: [PATCH] main: version 0.13.1 This release fixes a few bugs introduced in the previous 0.13.0 release. --- CHANGELOG.md | 9 +++++++++ version.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b040f064..a90c35e0a7 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 4bcbe4476f..44e4994c39 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"