diff options
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | version.go | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f8dc53a4..70afa2e41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +0.4.1 +--- +- **compiler** + - fix `objcopy` replacement to include the .data section in the firmware image + - use `llvm-ar-7` on Linux to fix the Docker image + 0.4.0 --- - **compiler** diff --git a/version.go b/version.go index 04370994e..6d62163d7 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.4.0" +const version = "0.4.1" |