golang.org/x/tools/gopls@v0.15.3/doc/releases.md (about) 1 # Gopls release policy 2 3 Gopls releases follow [semver](http://semver.org), with major changes and new 4 features introduced only in new minor versions (i.e. versions of the form 5 `v*.N.0` for some N). Subsequent patch releases contain only cherry-picked 6 fixes or superficial updates. 7 8 In order to align with the 9 [Go release timeline](https://github.com/golang/go/wiki/Go-Release-Cycle#timeline), 10 we aim to release a new minor version of Gopls approximately every three 11 months, with patch releases approximately every month, according to the 12 following table: 13 14 | Month | Version(s) | 15 | ---- | ------- | 16 | Jan | `v*.<N+0>.0` | 17 | Jan-Mar | `v*.<N+0>.*` | 18 | Apr | `v*.<N+1>.0` | 19 | Apr-Jun | `v*.<N+1>.*` | 20 | Jul | `v*.<N+2>.0` | 21 | Jul-Sep | `v*.<N+2>.*` | 22 | Oct | `v*.<N+3>.0` | 23 | Oct-Dec | `v*.<N+3>.*` | 24 25 For more background on this policy, see https://go.dev/issue/55267.