Skip to content

Commit 23d15de

Browse files
committed
chore: new go versions and bump
1 parent c33371b commit 23d15de

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<p align="center">
2-
<img alt="Goenv Logo" src="/static/logo.png?v=1.14.0" width="200" />
2+
<img alt="Goenv Logo" src="/static/logo.png?v=1.15.0" width="200" />
33
<h3 align="center">Goenv</h3>
44
<p align="center">Manage Your Applications Go Environment</p>
55
<p align="center">
66
<a href="https://github.com/norwik/Goenv/actions/workflows/build.yml">
77
<img src="https://github.com/norwik/Goenv/actions/workflows/build.yml/badge.svg">
88
</a>
99
<a href="https://github.com/norwik/Goenv/releases">
10-
<img src="https://img.shields.io/badge/Version-v1.14.0-red.svg">
10+
<img src="https://img.shields.io/badge/Version-v1.15.0-red.svg">
1111
</a>
1212
<a href="https://goreportcard.com/report/github.com/norwik/Goenv">
13-
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.14.0">
13+
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.15.0">
1414
</a>
1515
<a href="https://godoc.org/github.com/norwik/goenv">
1616
<img src="https://godoc.org/github.com/norwik/goenv?status.svg">

core/module/const.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,9 @@ var GolangReleases = []string{
268268
"1.20.8",
269269
"1.20.9",
270270
"1.20.10",
271+
"1.20.11",
272+
"1.20.12",
273+
"1.20.13",
271274
"1.21rc1",
272275
"1.21rc2",
273276
"1.21rc3",
@@ -276,6 +279,11 @@ var GolangReleases = []string{
276279
"1.21.1",
277280
"1.21.2",
278281
"1.21.3",
282+
"1.21.4",
283+
"1.21.5",
284+
"1.21.6",
285+
"1.22rc1",
286+
"1.22rc2",
279287
}
280288

281289
// goShimContent shim for go binary

core/module/golang_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestUnitGolang(t *testing.T) {
2323
g.Describe("#Golang", func() {
2424
g.It("It should satisfy test cases", func() {
2525
// Test GetVersions
26-
g.Assert(len(goenv.GetVersions())).Equal(256)
26+
g.Assert(len(goenv.GetVersions())).Equal(264)
2727

2828
// Test SetVersion
2929
versionFile := fmt.Sprintf("%s/.goenv/%s", baseDir, ".go-version")

0 commit comments

Comments
 (0)