diff options
author | deadprogram <[email protected]> | 2020-08-18 19:38:42 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-08-19 08:37:16 +0200 |
commit | 26a0819119287713efe95f2ec0c091070c0bd3a3 (patch) | |
tree | 2b4f37bd9d4cd58e6a941502e673b36f02cbddcc | |
parent | b59a46eef09f8a4a4e11ab604b26db6c7607d750 (diff) | |
download | tinygo-26a0819119287713efe95f2ec0c091070c0bd3a3.tar.gz tinygo-26a0819119287713efe95f2ec0c091070c0bd3a3.zip |
main: release 0.14.1v0.14.1
Signed-off-by: deadprogram <[email protected]>
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | goenv/version.go | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3445d2429..23e6d254d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +0.14.1 +--- +* **command-line** + - support for Go 1.15 +* **compiler** + - loader: work around Windows symlink limitation + 0.14.0 --- * **command-line** diff --git a/goenv/version.go b/goenv/version.go index 72f78f5e9..34008e8d4 100644 --- a/goenv/version.go +++ b/goenv/version.go @@ -12,7 +12,7 @@ import ( // Version of TinyGo. // Update this value before release of new version of software. -const Version = "0.14.0" +const Version = "0.14.1" // GetGorootVersion returns the major and minor version for a given GOROOT path. // If the goroot cannot be determined, (0, 0) is returned. |