You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

180 lines
9.2 KiB

  1. # Releases
  2. Tendermint uses [semantic versioning](https://semver.org/) with each release following
  3. a `vX.Y.Z` format. The `master` branch is used for active development and thus it's
  4. advisable not to build against it.
  5. The latest changes are always initially merged into `master`.
  6. Releases are specified using tags and are built from long-lived "backport" branches
  7. that are cut from `master` when the release process begins.
  8. Each release "line" (e.g. 0.34 or 0.33) has its own long-lived backport branch,
  9. and the backport branches have names like `v0.34.x` or `v0.33.x`
  10. (literally, `x`; it is not a placeholder in this case). Tendermint only
  11. maintains the last two releases at a time (the oldest release is predominantly
  12. just security patches).
  13. ## Backporting
  14. As non-breaking changes land on `master`, they should also be backported
  15. to these backport branches.
  16. We use Mergify's [backport feature](https://mergify.io/features/backports) to automatically backport
  17. to the needed branch. There should be a label for any backport branch that you'll be targeting.
  18. To notify the bot to backport a pull request, mark the pull request with the label corresponding
  19. to the correct backport branch. For example, to backport to v0.35.x, add the label `S:backport-to-v0.35.x`.
  20. Once the original pull request is merged, the bot will try to cherry-pick the pull request
  21. to the backport branch. If the bot fails to backport, it will open a pull request.
  22. The author of the original pull request is responsible for solving the conflicts and
  23. merging the pull request.
  24. ### Creating a backport branch
  25. If this is the first release candidate for a major release, you get to have the
  26. honor of creating the backport branch!
  27. Note that, after creating the backport branch, you'll also need to update the
  28. tags on `master` so that `go mod` is able to order the branches correctly. You
  29. should tag `master` with a "dev" tag that is "greater than" the backport
  30. branches tags. See [#6072](https://github.com/tendermint/tendermint/pull/6072)
  31. for more context.
  32. In the following example, we'll assume that we're making a backport branch for
  33. the 0.35.x line.
  34. 1. Start on `master`
  35. 2. Create and push the backport branch:
  36. ```sh
  37. git checkout -b v0.35.x
  38. git push origin v0.35.x
  39. ```
  40. After doing these steps, go back to `master` and do the following:
  41. 1. Tag `master` as the dev branch for the _next_ major release and push it back up.
  42. For example:
  43. ```sh
  44. git tag -a v0.36.0-dev -m "Development base for Tendermint v0.36."
  45. git push origin v0.36.0-dev
  46. ```
  47. 2. Create a new workflow to run e2e nightlies for the new backport branch.
  48. (See [e2e-nightly-master.yml][e2e] for an example.)
  49. 3. Add a new section to the Mergify config (`.github/mergify.yml`) to enable the
  50. backport bot to work on this branch, and add a corresponding `S:backport-to-v0.35.x`
  51. [label](https://github.com/tendermint/tendermint/labels) so the bot can be triggered.
  52. 4. Add a new section to the Dependabot config (`.github/dependabot.yml`) to
  53. enable automatic update of Go dependencies on this branch. Copy and edit one
  54. of the existing branch configurations to set the correct `target-branch`.
  55. [e2e]: https://github.com/tendermint/tendermint/blob/master/.github/workflows/e2e-nightly-master.yml
  56. ## Release candidates
  57. Before creating an official release, especially a major release, we may want to create a
  58. release candidate (RC) for our friends and partners to test out. We use git tags to
  59. create RCs, and we build them off of backport branches.
  60. Tags for RCs should follow the "standard" release naming conventions, with `-rcX` at the end
  61. (for example, `v0.35.0-rc0`).
  62. (Note that branches and tags _cannot_ have the same names, so it's important that these branches
  63. have distinct names from the tags/release names.)
  64. If this is the first RC for a major release, you'll have to make a new backport branch (see above).
  65. Otherwise:
  66. 1. Start from the backport branch (e.g. `v0.35.x`).
  67. 2. Run the integration tests and the e2e nightlies
  68. (which can be triggered from the Github UI;
  69. e.g., https://github.com/tendermint/tendermint/actions/workflows/e2e-nightly-34x.yml).
  70. 3. Prepare the changelog:
  71. - Move the changes included in `CHANGELOG_PENDING.md` into `CHANGELOG.md`. Each RC should have
  72. it's own changelog section. These will be squashed when the final candidate is released.
  73. - Run `python ./scripts/linkify_changelog.py CHANGELOG.md` to add links for
  74. all PRs
  75. - Ensure that `UPGRADING.md` is up-to-date and includes notes on any breaking changes
  76. or other upgrading flows.
  77. - Bump TMVersionDefault version in `version.go`
  78. - Bump P2P and block protocol versions in `version.go`, if necessary.
  79. Check the changelog for breaking changes in these components.
  80. - Bump ABCI protocol version in `version.go`, if necessary
  81. 4. Open a PR with these changes against the backport branch.
  82. 5. Once these changes have landed on the backport branch, be sure to pull them back down locally.
  83. 6. Once you have the changes locally, create the new tag, specifying a name and a tag "message":
  84. `git tag -a v0.35.0-rc0 -m "Release Candidate v0.35.0-rc0`
  85. 7. Push the tag back up to origin:
  86. `git push origin v0.35.0-rc0`
  87. Now the tag should be available on the repo's releases page.
  88. 8. Future RCs will continue to be built off of this branch.
  89. Note that this process should only be used for "true" RCs--
  90. release candidates that, if successful, will be the next release.
  91. For more experimental "RCs," create a new, short-lived branch and tag that instead.
  92. ## Major release
  93. This major release process assumes that this release was preceded by release candidates.
  94. If there were no release candidates, begin by creating a backport branch, as described above.
  95. 1. Start on the backport branch (e.g. `v0.35.x`)
  96. 2. Run integration tests (`make test_integrations`) and the e2e nightlies.
  97. 3. Prepare the release:
  98. - "Squash" changes from the changelog entries for the RCs into a single entry,
  99. and add all changes included in `CHANGELOG_PENDING.md`.
  100. (Squashing includes both combining all entries, as well as removing or simplifying
  101. any intra-RC changes. It may also help to alphabetize the entries by package name.)
  102. - Run `python ./scripts/linkify_changelog.py CHANGELOG.md` to add links for
  103. all PRs
  104. - Ensure that `UPGRADING.md` is up-to-date and includes notes on any breaking changes
  105. or other upgrading flows.
  106. - Bump TMVersionDefault version in `version.go`
  107. - Bump P2P and block protocol versions in `version.go`, if necessary
  108. - Bump ABCI protocol version in `version.go`, if necessary
  109. 4. Open a PR with these changes against the backport branch.
  110. 5. Once these changes are on the backport branch, push a tag with prepared release details.
  111. This will trigger the actual release `v0.35.0`.
  112. - `git tag -a v0.35.0 -m 'Release v0.35.0'`
  113. - `git push origin v0.35.0`
  114. 6. Make sure that `master` is updated with the latest `CHANGELOG.md`, `CHANGELOG_PENDING.md`, and `UPGRADING.md`.
  115. 7. Add the release to the documentation site generator config (see
  116. [DOCS_README.md](./docs/DOCS_README.md) for more details). In summary:
  117. - Start on branch `master`.
  118. - Add a new line at the bottom of [`docs/versions`](./docs/versions) to
  119. ensure the newest release is the default for the landing page.
  120. - Add a new entry to `themeConfig.versions` in
  121. [`docs/.vuepress/config.js`](./docs/.vuepress/config.js) to include the
  122. release in the dropdown versions menu.
  123. - Commit these changes to `master` and backport them into the backport
  124. branch for this release.
  125. ## Minor release (point releases)
  126. Minor releases are done differently from major releases: They are built off of
  127. long-lived backport branches, rather than from master. As non-breaking changes
  128. land on `master`, they should also be backported into these backport branches.
  129. Minor releases don't have release candidates by default, although any tricky
  130. changes may merit a release candidate.
  131. To create a minor release:
  132. 1. Checkout the long-lived backport branch: `git checkout v0.35.x`
  133. 2. Run integration tests (`make test_integrations`) and the nightlies.
  134. 3. Check out a new branch and prepare the release:
  135. - Copy `CHANGELOG_PENDING.md` to top of `CHANGELOG.md`
  136. - Run `python ./scripts/linkify_changelog.py CHANGELOG.md` to add links for all issues
  137. - Run `bash ./scripts/authors.sh` to get a list of authors since the latest release, and add the GitHub aliases of external contributors to the top of the CHANGELOG. To lookup an alias from an email, try `bash ./scripts/authors.sh <email>`
  138. - Reset the `CHANGELOG_PENDING.md`
  139. - Bump the TMDefaultVersion in `version.go`
  140. - Bump the ABCI version number, if necessary.
  141. (Note that ABCI follows semver, and that ABCI versions are the only versions
  142. which can change during minor releases, and only field additions are valid minor changes.)
  143. 4. Open a PR with these changes that will land them back on `v0.35.x`
  144. 5. Once this change has landed on the backport branch, make sure to pull it locally, then push a tag.
  145. - `git tag -a v0.35.1 -m 'Release v0.35.1'`
  146. - `git push origin v0.35.1`
  147. 6. Create a pull request back to master with the CHANGELOG & version changes from the latest release.
  148. - Remove all `R:minor` labels from the pull requests that were included in the release.
  149. - Do not merge the backport branch into master.