File tree 2 files changed +2
-1
lines changed 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ func defaultContext() Context {
292
292
// say "+build go1.x", and code that should only be built before Go 1.x
293
293
// (perhaps it is the stub to use in that case) should say "+build !go1.x".
294
294
// NOTE: If you add to this list, also update the doc comment in doc.go.
295
- const version = 10 // go1.10
295
+ const version = 11 // go1.11
296
296
for i := 1 ; i <= version ; i ++ {
297
297
c .ReleaseTags = append (c .ReleaseTags , "go1." + strconv .Itoa (i ))
298
298
}
Original file line number Diff line number Diff line change 107
107
// - "go1.8", from Go version 1.8 onward
108
108
// - "go1.9", from Go version 1.9 onward
109
109
// - "go1.10", from Go version 1.10 onward
110
+ // - "go1.11", from Go version 1.11 onward
110
111
// - any additional words listed in ctxt.BuildTags
111
112
//
112
113
// If a file's name, after stripping the extension and a possible _test suffix,
You can’t perform that action at this time.
0 commit comments