diff options
-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. |