blob: b7aefc8d2c1e7badc95666dbdc0f3efab9364f0d [file] [log] [blame] [view]
Jonathan Amsterdamb3cfb242023-11-15 08:23:23 -05001# Release Notes
2
3The `initial` and `next` subdirectories of this directory are for release notes.
4
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -05005## For developers
6
Jonathan Amsterdam0e7f5cf2024-04-26 14:47:37 -04007Release notes should be added to `next` by editing existing files or creating
8new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
9the CL (or ask the author to do so).
Jonathan Amsterdamb3cfb242023-11-15 08:23:23 -050010
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -050011At the end of the development cycle, the files will be merged by being
12concatenated in sorted order by pathname. Files in the directory matching the
13glob "*stdlib/*minor" are treated specially. They should be in subdirectories
14corresponding to standard library package paths, and headings for those package
15paths will be generated automatically.
Jonathan Amsterdamb3cfb242023-11-15 08:23:23 -050016
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -050017Files in this repo's `api/next` directory must have corresponding files in
Alan Donovanb0799672024-01-26 11:19:22 -050018`doc/next/*stdlib/*minor`.
19The files should be in the subdirectory for the package with the new
20API, and should be named after the issue number of the API proposal.
21For example, if the directory `6-stdlib/99-minor` is present,
22then an `api/next` file with the line
Jonathan Amsterdamb3cfb242023-11-15 08:23:23 -050023
24 pkg net/http, function F #12345
25
Alan Donovanb0799672024-01-26 11:19:22 -050026should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
Jonathan Amsterdamb3cfb242023-11-15 08:23:23 -050027At a minimum, that file should contain either a full sentence or a TODO,
28ideally referring to a person with the responsibility to complete the note.
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -050029
Jonathan Amsterdamee0bf1d2024-05-09 14:09:32 -040030If your CL addresses an accepted proposal, mention the proposal issue number in
31your release note in the form `/issue/NUMBER`. A link to the issue in the text
32will have this form (see below). If you don't want to mention the issue in the
33text, add it as a comment:
34```
35<!-- go.dev/issue/12345 -->
36```
37If an accepted proposal is mentioned in a CL but not in the release notes, it will be
38flagged as a TODO by the automated tooling. That is true even for proposals that add API.
39
Alan Donovanb0799672024-01-26 11:19:22 -050040Use the following forms in your markdown:
41
Jonathan Amsterdam5b5d6f82024-04-10 12:19:36 -040042 [http.Request] # symbol documentation; auto-linked as in Go doc strings
Jonathan Amsterdam06b45782024-05-16 12:09:38 -040043 [Request] # short form, for symbols in the package being documented
Dmitri Shuralyov960cd142024-05-24 11:18:15 -040044 [net/http] # package link
Jonathan Amsterdam5b5d6f82024-04-10 12:19:36 -040045 [#12345](/issue/12345) # GitHub issues
46 [CL 6789](/cl/6789) # Gerrit changelists
Alan Donovanb0799672024-01-26 11:19:22 -050047
Dmitri Shuralyov960cd142024-05-24 11:18:15 -040048To preview `next` content in merged form using a local instance of the website, run:
49
50```
Dmitri Shuralyove53d10d2024-06-05 15:21:25 -040051go run golang.org/x/website/cmd/golangorg@latest -goroot=..
Dmitri Shuralyov960cd142024-05-24 11:18:15 -040052```
53
54Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits.
55
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -050056## For the release team
57
Jonathan Amsterdamee0bf1d2024-05-09 14:09:32 -040058The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
59in `doc/next`.
60
61As a release cycle nears completion, run `relnote todo` to get a list of
62unfinished release note work.
63
64To prepare the release notes for a release, run `relnote generate`.
65That will merge the `.md` files in `next` into a single file.
Dmitri Shuralyov960cd142024-05-24 11:18:15 -040066Atomically (as close to it as possible) add that file to `_content/doc` directory
67of the website repository and remove the `doc/next` directory in this repository.
Jonathan Amsterdamee0bf1d2024-05-09 14:09:32 -040068
Dmitri Shuralyov960cd142024-05-24 11:18:15 -040069To begin the next release development cycle, populate the contents of `next`
70with those of `initial`. From the repo root:
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -050071
72 > cd doc
Dmitri Shuralyove8c5bed2024-07-22 12:44:49 -040073 > cp -R initial/ next
Jonathan Amsterdam6037c8a2024-01-22 13:20:07 -050074
75Then edit `next/1-intro.md` to refer to the next version.