golang.org/x/build@v0.0.0-20240506185731-218518f32b70/internal/task/template/announce-minor.md (about)

     1  Subject: {{subjectPrefix .}}
     2  	Go {{short .Version}} {{with .SecondaryVersion}}and Go {{. | short}} are{{else}}is{{end}} released
     3  
     4  Hello gophers,
     5  
     6  {{if .SecondaryVersion -}}
     7  We have just released Go versions {{short .Version}} and {{short .SecondaryVersion}}, minor point releases.
     8  {{- else -}}
     9  We have just released Go version {{short .Version}}, a minor point release.
    10  {{- end}}
    11  
    12  {{if .Security}}{{if .SecondaryVersion -}}
    13  These minor releases include
    14  {{- else -}}
    15  This minor release includes{{end}} {{len .Security}} security fixes following the [security policy](https://go.dev/security):
    16  {{range .Security}}
    17  -{{indent .}}
    18  {{end}}
    19  {{end -}}
    20  
    21  View the release notes for more information:
    22  https://go.dev/doc/devel/release#{{.Version}}
    23  
    24  You can download binary and source distributions from the Go website:
    25  https://go.dev/dl/
    26  
    27  To compile from source using a Git clone, update to the release with
    28  `git checkout {{.Version}}` and build as usual.
    29  
    30  Thanks to everyone who contributed to the release{{if .SecondaryVersion}}s{{end}}.
    31  
    32  Cheers,
    33  {{with .Names}}{{join .}} for the{{else}}The{{end}} Go team