Lines Matching +full:- +full:prerelease
2 // Use of this source code is governed by a BSD-style
16 // - Tagged releases use a tag that is identical to String.
17 // - Tagged releases never reference a commit where the String
19 // - The set of all commits in this repository where String
26 // 2. Update Minor, Patch, and/or PreRelease as necessary.
27 // PreRelease must not contain the string "devel".
39 // without any other CLs in-between.
48 // 9. Update PreRelease to include the string "devel".
49 // For example: "" -> "devel" or "rc.1" -> "rc.1.devel"
56 PreRelease = "" const
64 // v1.21.0-rc.1
67 if PreRelease != "" {
68 v += "-" + PreRelease
74 if strings.Contains(PreRelease, "devel") && metadata != "" {