Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit ed10114

Browse files
Add missing build step (#4307)
Tests are setup not to run when `README.md` is updated, so this is unable to be merged by normal means (waiting for tests to pass)
1 parent 3f5cb38 commit ed10114

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

RELEASE.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -79,25 +79,27 @@ The following describes the steps required to release a new version of `web3.js`
7979
1. Update and commit `CHANGELOG.md`.
8080
1. Move section header `[Unreleased]` to bottom.
8181
1. Add next anticipated release version number to bottom (as a placeholder for new changelog entries).
82-
1. Create release commit and tags e.g. `lerna version 1.2.7-rc.0 --no-push`
82+
1. In the project root, run `npm run build` and commit changes after using a commit message like: `Build for 1.0.0-rc.0`
83+
1. The next step will also build each package, but Lerna makes the tagged commit before building the packages (so they're not included)
84+
3. Create release commit and tags e.g. `lerna version 1.2.7-rc.0 --no-push`
8385
1. (updates package version numbers, builds minified file (for `1.x`), creates release commit and tags.)
84-
1. Push release branch to origin with tags `git push origin release/1.2.7 --follow-tags`.
85-
1. Create release PR as draft ([example](https://github.com/ethereum/web3.js/pull/3351)).
86-
1. Ensure CI is green / passing.
86+
4. Push release branch to origin with tags `git push origin release/1.2.7 --follow-tags`.
87+
5. Create release PR as draft ([example](https://github.com/ethereum/web3.js/pull/3351)).
88+
6. Ensure CI is green / passing.
8789
1. (spend time here inspecting the CI logs to ensure everything looks valid and results were reported correctly)
88-
1. Run `npm run publish from-package -- --dist-tag rc`.
90+
7. Run `npm run publish from-package -- --dist-tag rc`.
8991
1. Lerna can sometimes have difficulty with the number of packages we have. If the above command is unsuccessful, for every unpublished package run: `lerna publish --scope="package-name"` `npm dist-tag add <package-name>@<version> rc`)
90-
1. Publish the GitHub release.
91-
1. A GitHub Webhook should trigger the ReadTheDocs build after the release is published.
92+
8. Publish the GitHub release.
93+
9. A GitHub Webhook should trigger the ReadTheDocs build after the release is published.
9294
1. (The build may sometimes need to be manually triggered in ReadTheDocs admin panel. If the version does not appear, create a build of a previous version to refresh the list.)
9395
1. Activate the new version.
94-
1. Request PR review from key contributors:
96+
10. Request PR review from key contributors:
9597
1. Chris from EthereumJS ([@cgewecke](https://github.com/cgewecke))
9698
1. Patricio from Nomic Labs ([@alcuadrado](https://github.com/alcuadrado))
9799
1. Michael from Embark ([@michaelsbradleyjr](https://github.com/michaelsbradleyjr))
98100
1. Nicholas from Truffle ([@gnidan](https://github.com/gnidan))
99101
1. If touches or affects ENS: Nick Johnson ([@Arachnid](https://github.com/Arachnid))
100-
1. Wait 1 week for community discourse and 2 reviewer approvals.
102+
11. Wait 1 week for community discourse and 2 reviewer approvals.
101103
1. (if release is an emergency patch, time limit may be reduced relative to severity.)
102104

103105
## Formal Release Procedure

0 commit comments

Comments
 (0)