Skip to content

Commit ee46a0c

Browse files
committed
Add newer go versions and bump
1 parent bcac21e commit ee46a0c

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

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.15.0" width="200" />
2+
<img alt="Goenv Logo" src="/static/logo.png?v=1.16.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.15.0-red.svg">
10+
<img src="https://img.shields.io/badge/Version-v1.16.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.15.0">
13+
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.16.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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ var GolangReleases = []string{
271271
"1.20.11",
272272
"1.20.12",
273273
"1.20.13",
274+
"1.20.14",
274275
"1.21rc1",
275276
"1.21rc2",
276277
"1.21rc3",
@@ -282,8 +283,16 @@ var GolangReleases = []string{
282283
"1.21.4",
283284
"1.21.5",
284285
"1.21.6",
286+
"1.21.7",
287+
"1.21.8",
288+
"1.21.9",
289+
"1.21.10",
285290
"1.22rc1",
286291
"1.22rc2",
292+
"1.22.0",
293+
"1.22.1",
294+
"1.22.2",
295+
"1.22.3",
287296
}
288297

289298
// 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(264)
26+
g.Assert(len(goenv.GetVersions())).Equal(273)
2727

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

0 commit comments

Comments
 (0)