Jonathan Amsterdam | b3cfb24 | 2023-11-15 08:23:23 -0500 | [diff] [blame] | 1 | # Release Notes |
| 2 | |
| 3 | The `initial` and `next` subdirectories of this directory are for release notes. |
| 4 | |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 5 | ## For developers |
| 6 | |
Jonathan Amsterdam | 0e7f5cf | 2024-04-26 14:47:37 -0400 | [diff] [blame] | 7 | Release notes should be added to `next` by editing existing files or creating |
| 8 | new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to |
| 9 | the CL (or ask the author to do so). |
Jonathan Amsterdam | b3cfb24 | 2023-11-15 08:23:23 -0500 | [diff] [blame] | 10 | |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 11 | At the end of the development cycle, the files will be merged by being |
| 12 | concatenated in sorted order by pathname. Files in the directory matching the |
| 13 | glob "*stdlib/*minor" are treated specially. They should be in subdirectories |
| 14 | corresponding to standard library package paths, and headings for those package |
| 15 | paths will be generated automatically. |
Jonathan Amsterdam | b3cfb24 | 2023-11-15 08:23:23 -0500 | [diff] [blame] | 16 | |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 17 | Files in this repo's `api/next` directory must have corresponding files in |
Alan Donovan | b079967 | 2024-01-26 11:19:22 -0500 | [diff] [blame] | 18 | `doc/next/*stdlib/*minor`. |
| 19 | The files should be in the subdirectory for the package with the new |
| 20 | API, and should be named after the issue number of the API proposal. |
| 21 | For example, if the directory `6-stdlib/99-minor` is present, |
| 22 | then an `api/next` file with the line |
Jonathan Amsterdam | b3cfb24 | 2023-11-15 08:23:23 -0500 | [diff] [blame] | 23 | |
| 24 | pkg net/http, function F #12345 |
| 25 | |
Alan Donovan | b079967 | 2024-01-26 11:19:22 -0500 | [diff] [blame] | 26 | should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`. |
Jonathan Amsterdam | b3cfb24 | 2023-11-15 08:23:23 -0500 | [diff] [blame] | 27 | At a minimum, that file should contain either a full sentence or a TODO, |
| 28 | ideally referring to a person with the responsibility to complete the note. |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 29 | |
Jonathan Amsterdam | ee0bf1d | 2024-05-09 14:09:32 -0400 | [diff] [blame] | 30 | If your CL addresses an accepted proposal, mention the proposal issue number in |
| 31 | your release note in the form `/issue/NUMBER`. A link to the issue in the text |
| 32 | will have this form (see below). If you don't want to mention the issue in the |
| 33 | text, add it as a comment: |
| 34 | ``` |
| 35 | <!-- go.dev/issue/12345 --> |
| 36 | ``` |
| 37 | If an accepted proposal is mentioned in a CL but not in the release notes, it will be |
| 38 | flagged as a TODO by the automated tooling. That is true even for proposals that add API. |
| 39 | |
Alan Donovan | b079967 | 2024-01-26 11:19:22 -0500 | [diff] [blame] | 40 | Use the following forms in your markdown: |
| 41 | |
Jonathan Amsterdam | 5b5d6f8 | 2024-04-10 12:19:36 -0400 | [diff] [blame] | 42 | [http.Request] # symbol documentation; auto-linked as in Go doc strings |
Jonathan Amsterdam | 06b4578 | 2024-05-16 12:09:38 -0400 | [diff] [blame] | 43 | [Request] # short form, for symbols in the package being documented |
Dmitri Shuralyov | 960cd14 | 2024-05-24 11:18:15 -0400 | [diff] [blame] | 44 | [net/http] # package link |
Jonathan Amsterdam | 5b5d6f8 | 2024-04-10 12:19:36 -0400 | [diff] [blame] | 45 | [#12345](/issue/12345) # GitHub issues |
| 46 | [CL 6789](/cl/6789) # Gerrit changelists |
Alan Donovan | b079967 | 2024-01-26 11:19:22 -0500 | [diff] [blame] | 47 | |
Dmitri Shuralyov | 960cd14 | 2024-05-24 11:18:15 -0400 | [diff] [blame] | 48 | To preview `next` content in merged form using a local instance of the website, run: |
| 49 | |
| 50 | ``` |
Dmitri Shuralyov | e53d10d | 2024-06-05 15:21:25 -0400 | [diff] [blame] | 51 | go run golang.org/x/website/cmd/golangorg@latest -goroot=.. |
Dmitri Shuralyov | 960cd14 | 2024-05-24 11:18:15 -0400 | [diff] [blame] | 52 | ``` |
| 53 | |
| 54 | Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits. |
| 55 | |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 56 | ## For the release team |
| 57 | |
Jonathan Amsterdam | ee0bf1d | 2024-05-09 14:09:32 -0400 | [diff] [blame] | 58 | The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files |
| 59 | in `doc/next`. |
| 60 | |
| 61 | As a release cycle nears completion, run `relnote todo` to get a list of |
| 62 | unfinished release note work. |
| 63 | |
| 64 | To prepare the release notes for a release, run `relnote generate`. |
| 65 | That will merge the `.md` files in `next` into a single file. |
Dmitri Shuralyov | 960cd14 | 2024-05-24 11:18:15 -0400 | [diff] [blame] | 66 | Atomically (as close to it as possible) add that file to `_content/doc` directory |
| 67 | of the website repository and remove the `doc/next` directory in this repository. |
Jonathan Amsterdam | ee0bf1d | 2024-05-09 14:09:32 -0400 | [diff] [blame] | 68 | |
Dmitri Shuralyov | 960cd14 | 2024-05-24 11:18:15 -0400 | [diff] [blame] | 69 | To begin the next release development cycle, populate the contents of `next` |
| 70 | with those of `initial`. From the repo root: |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 71 | |
| 72 | > cd doc |
Dmitri Shuralyov | e8c5bed | 2024-07-22 12:44:49 -0400 | [diff] [blame] | 73 | > cp -R initial/ next |
Jonathan Amsterdam | 6037c8a | 2024-01-22 13:20:07 -0500 | [diff] [blame] | 74 | |
| 75 | Then edit `next/1-intro.md` to refer to the next version. |