diff --git a/README.md b/README.md index b41c7bb..33a403c 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 3a5785c..d2d6136 100644 --- a/core/module/const.go +++ b/core/module/const.go @@ -268,6 +268,9 @@ var GolangReleases = []string{ "1.20.8", "1.20.9", "1.20.10", + "1.20.11", + "1.20.12", + "1.20.13", "1.21rc1", "1.21rc2", "1.21rc3", @@ -276,6 +279,11 @@ var GolangReleases = []string{ "1.21.1", "1.21.2", "1.21.3", + "1.21.4", + "1.21.5", + "1.21.6", + "1.22rc1", + "1.22rc2", } // goShimContent shim for go binary diff --git a/core/module/golang_test.go b/core/module/golang_test.go index 437dbdf..78ec1fb 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(256) + g.Assert(len(goenv.GetVersions())).Equal(264) // Test SetVersion versionFile := fmt.Sprintf("%s/.goenv/%s", baseDir, ".go-version")