diff --git a/README.md b/README.md index 33a403c..5297acd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- Goenv Logo + Goenv Logo

Goenv

Manage Your Applications Go Environment

@@ -7,10 +7,10 @@ - + - + diff --git a/core/module/const.go b/core/module/const.go index d2d6136..9757325 100644 --- a/core/module/const.go +++ b/core/module/const.go @@ -271,6 +271,7 @@ var GolangReleases = []string{ "1.20.11", "1.20.12", "1.20.13", + "1.20.14", "1.21rc1", "1.21rc2", "1.21rc3", @@ -282,8 +283,16 @@ var GolangReleases = []string{ "1.21.4", "1.21.5", "1.21.6", + "1.21.7", + "1.21.8", + "1.21.9", + "1.21.10", "1.22rc1", "1.22rc2", + "1.22.0", + "1.22.1", + "1.22.2", + "1.22.3", } // goShimContent shim for go binary diff --git a/core/module/golang_test.go b/core/module/golang_test.go index 78ec1fb..1782a9f 100644 --- a/core/module/golang_test.go +++ b/core/module/golang_test.go @@ -23,7 +23,7 @@ func TestUnitGolang(t *testing.T) { g.Describe("#Golang", func() { g.It("It should satisfy test cases", func() { // Test GetVersions - g.Assert(len(goenv.GetVersions())).Equal(264) + g.Assert(len(goenv.GetVersions())).Equal(273) // Test SetVersion versionFile := fmt.Sprintf("%s/.goenv/%s", baseDir, ".go-version")