diff options
author | Ayke van Laethem <[email protected]> | 2019-07-27 09:32:44 -0700 |
---|---|---|
committer | Ayke <[email protected]> | 2019-07-27 10:02:10 -0700 |
commit | 7d5542dda73e8dda066b604870eac279cd644a7e (patch) | |
tree | 7351b8bcf3c8627898e46a3737f6b0ce384edf66 | |
parent | 8eb60390522616067321be05b948d6ba585fdad0 (diff) | |
download | tinygo-7d5542dda73e8dda066b604870eac279cd644a7e.tar.gz tinygo-7d5542dda73e8dda066b604870eac279cd644a7e.zip |
main: version 0.7.1v0.7.1
This release contains a small fix for some atsamd21-based boards to make
them usable on macOS: it now allows to specify the serial port using the
-port flag.
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | version.go | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ce4947ebf..8bd1b8de3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +0.7.1 +--- +* **targets** + - `atsamd21`: add support for the `-port` flag in the flash subcommand + 0.7.0 --- * **command line** diff --git a/version.go b/version.go index 83915c370..536e8f16a 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.7.0" +const version = "0.7.1" |