aboutsummaryrefslogtreecommitdiffhomepage
path: root/goenv
AgeCommit message (Collapse)Author
2021-09-23version: update TinyGo version to 0.21.0-devsago35
2021-09-21main: release version 0.20.0Ayke van Laethem
2021-08-30goenv: improve Go version detectionAyke van Laethem
First look at the VERSION file, only then look at src/runtime/internal/sys/zversion.go. This makes it possible to correctly detect the Go version for release candidates.
2021-07-02version: update TinyGo version to 0.20.0-devsago35
2021-06-30main: release version 0.19.0v0.19.0Ayke van Laethem
2021-05-14version: update TinyGo version to 0.19.0-devsago35
2021-05-12main: version 0.18.0Ayke van Laethem
2021-04-15add goroot for snap installsTobias Theel
2021-03-14goenv: use physical path instead of cached GOROOT in function getGoroot ↵ardnew
(fixes #433, #1658)
2021-03-07version: update TinyGo version to 0.18.0-devsago35
2021-03-05all: release v0.17.0v0.17.0Ayke van Laethem
2020-11-27version: update TinyGo version to 0.17.0-devsago35
2020-11-17main: release 0.16.0v0.16.0Ayke van Laethem
2020-09-18version: update TinyGo version to 0.16.0-devsago35
2020-09-17Prepare for 0.15.0 releasev0.15.0deadprogram
Signed-off-by: deadprogram <[email protected]>
2020-08-24version: update TinyGo version to 0.15.0-devdeadprogram
Signed-off-by: deadprogram <[email protected]>
2020-08-19main: release 0.14.1v0.14.1deadprogram
Signed-off-by: deadprogram <[email protected]>
2020-08-03main: release 0.14.0v0.14.0Ayke van Laethem
2020-05-27main: move TinyGo version to goenvAyke van Laethem
This is needed to make it available to more packages, for caching purposes. For caching, the version itself may not be enough during development. But for regular releases, the version provides some protection against accidentally using a cache entry that is invalid in a newer version.
2020-05-27builder: move Go version code to goenv packageAyke van Laethem
This is necessary to avoid a circular dependency in the loader (which soon will need to read the Go version) and because it seems like a better place anyway.
2020-01-14compiler: add support for CGO_ENABLED environment variableAyke van Laethem
2019-10-14main: refactor environment variables into a separate packageAyke van Laethem
This makes it possible to query these environment variables from anywhere, which might be useful. More importantly, it puts them in a central location from where they can be queried, useful for a `go env` subcommand.