Skip to content

Commit

Permalink
Update README with info on how to bump the version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
rfk committed Mar 24, 2021
1 parent ca70ab7 commit 335afea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,15 @@ For ease of consumption, we check the resulting built artifacts in to the Git re

### Release Process

Use `npm publish` to cut a new release, after ensuring that the tests pass and the
correct artifacts have been built:
Use `npm version` and `npm publish` to cut a new release, after ensuring that the tests pass
and the correct artifacts have been built:

```
npm run build
npm test
npm version [major | minor | patch] -m "Prepare version %s"
npm publish
git tag vX.Y.Z & git push origin vX.Y.Z
git push origin vX.Y.Z
```

Then, open a [Bugzilla Bug](https://bugzilla.mozilla.org/enter_bug.cgi?product=Firefox&component=Firefox%20Accounts) to update the vendored copy of the library in mozilla-central.
Expand Down

0 comments on commit 335afea

Please sign in to comment.