Skip to content

Commit

Permalink
chore: new go versions and bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Feb 3, 2024
1 parent c33371b commit 23d15de
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<p align="center">
<img alt="Goenv Logo" src="/static/logo.png?v=1.14.0" width="200" />
<img alt="Goenv Logo" src="/static/logo.png?v=1.15.0" width="200" />
<h3 align="center">Goenv</h3>
<p align="center">Manage Your Applications Go Environment</p>
<p align="center">
<a href="https://github.com/norwik/Goenv/actions/workflows/build.yml">
<img src="https://github.com/norwik/Goenv/actions/workflows/build.yml/badge.svg">
</a>
<a href="https://github.com/norwik/Goenv/releases">
<img src="https://img.shields.io/badge/Version-v1.14.0-red.svg">
<img src="https://img.shields.io/badge/Version-v1.15.0-red.svg">
</a>
<a href="https://goreportcard.com/report/github.com/norwik/Goenv">
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.14.0">
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.15.0">
</a>
<a href="https://godoc.org/github.com/norwik/goenv">
<img src="https://godoc.org/github.com/norwik/goenv?status.svg">
Expand Down
8 changes: 8 additions & 0 deletions core/module/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion core/module/golang_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 23d15de

Please sign in to comment.