-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7892903
commit 15ecd0c
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Nomad Go Version | ||
|
||
Nomad is intended to be built with a specific version of the Go toolchain for | ||
each release. Generally, each Y release of Nomad (where 0.9.5 means X=0, Y=9, | ||
Z=5) will update to the latest version of the Go toolchain available at the | ||
time. | ||
|
||
Nomad Z releases update to the latest Go Z release but do *not* change Go's Y | ||
version. | ||
|
||
## Version Table | ||
|
||
| Nomad Version | Go Version | | ||
|:-------------:|:----------:| | ||
| 0.11 | 1.13 | | ||
| 0.10 | 1.12 | | ||
| 0.9 | 1.11 | | ||
|
||
## Code | ||
|
||
The | ||
[`update_golang_version.sh`](https://github.com/hashicorp/nomad/blob/master/scripts/update_golang_version.sh) | ||
script is used to update the Go version for all build tools. | ||
|
||
The [Changelog](https://github.com/hashicorp/nomad/blob/v0.10.2/CHANGELOG.md) | ||
will note when the Go version has changed in the Improvements section: | ||
|
||
``` | ||
* build: Updated to Go 1.12.13 [GH-6606] | ||
``` |