-
Notifications
You must be signed in to change notification settings - Fork 38
Releasing Spot
Leslie Fung edited this page Jan 28, 2020
·
1 revision
To release a new version of Spot, you need two steps:
- Create a new branch.
- Update the
version
field inpackage.json
. - Run
yarn prepack
, which will updateREADME.md
automatically. - Send a PR with the changes with the PR and commit message:
Release [version]
.- Example:
Release v0.1.2
- Example:
- Merge the PR into master with the same squashed commit message.
- Visit the releases page to see what was last announced.
- Draft a new release:
- Tag =
v[version]
(e.g.v2.1.1
). Do not forget thev
, which is required to trigger the NPM publish on CircleCI. - Title =
Release v[version]
(e.g.Release v2.1.1
)
- Tag =
- Make sure to announce major changes since the last version in the description.
- Once published, check CircleCI to ensure publication was successful.