Skip to content

Commit ed1a8dc

Browse files
committedDec 2, 2019
Update release docs.
1 parent c78dfea commit ed1a8dc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
 

Diff for: ‎docs/contributing/releasing.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ Release management is currently a manual process, to be performed by core team m
99
2. Open a pull request for `release` -> `master`
1010
3. Write the release notes in the PR description.
1111
4. Decide on the version number, taking care to follow semver. Do a pre-release before doing the actual release.
12-
5. Run `yarn bump` to increment the version number and commit it as "Release vX.X.X" (using the correct version number).
13-
6. Tag the release commit with `git tag vX.X.X` (using the correct version number).
14-
7. Push the release commit AND tag: `git push --follow-tags`
15-
8. Publish each package (in `./packages`) to npm using the script below.
16-
9. Create a new release on GitHub and copy the release notes there.
12+
5. Run `yarn bump` to increment the version number in all `package.json` files as well as `lerna.json`.
13+
6. Commit the version change as "Release vX.X.X" (using the correct version number).
14+
7. Tag the release commit with `git tag vX.X.X` (using the correct version number).
15+
8. Push the release commit AND tag: `git push --follow-tags`
16+
9. Publish each package (in `./packages`) to npm using the script below.
17+
10. Create a new release on GitHub and copy the release notes there.
1718

1819
```
1920
yarn build:packages

0 commit comments

Comments
 (0)