Skip to content

Commit

Permalink
Add patch version number in go.mod (X.Y => X.Y.Z) (#68)
Browse files Browse the repository at this point in the history
> Before Go 1.21, the initial release of a Go toolchain was
> version 1.N, not 1.N.0, so for N < 21, the ordering is
> adjusted to place 1.N after the release candidates.
>
> https://go.dev/doc/toolchain#version

Go changed its versioning scheme in 1.21 from `<major>.<minor>`
to `<major>.<minor>.<patch>`.  CodeQL analysis flags this
stating the lack of a patch number "may cause some `go` commands
to fail."
  • Loading branch information
svenevs authored Jun 4, 2024
1 parent 22f40b4 commit a533e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/adobe/aquarium-fish

go 1.21
go 1.21.0

require (
github.com/alessio/shellescape v1.4.1
Expand Down

0 comments on commit a533e9e

Please sign in to comment.