File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -93,18 +93,22 @@ then use `npm version patch|minor|major` in order to increment the version in
9393package.json and tag and commit a release. Then ` git push && git push --tags `
9494to sync this change with source control. Then ` npm publish npmDist ` to actually
9595publish the release to NPM.
96- Once published, add [ release notes] ( https://github.com/graphql/graphql-js/tags ) .
96+ Once published, add [ release notes] ( https://github.com/graphql/graphql-js/releases ) .
9797Use [ semver] ( https://semver.org/ ) to determine which version part to increment.
9898
9999Example for a patch release:
100100
101101``` sh
102+ npm ci
102103npm test
103104npm version patch
104105git push --follow-tags
105- npm publish npmDist
106+ cd npmDist && npm publish
107+ npm run changelog
106108```
107109
110+ Then upload the changelog to [ https://github.com/graphql/graphql-js/releases ] ( https://github.com/graphql/graphql-js/releases ) .
111+
108112## License
109113
110114By contributing to graphql-js, you agree that your contributions will be
You can’t perform that action at this time.
0 commit comments