File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -63,15 +63,19 @@ Release
63
63
64
64
Steps to perform a release:
65
65
66
- 1 . Bump and tag the version (choose ` patch ` / ` minor ` / ` major ` as appropriate).
66
+ 1 . Bump and tag the version:
67
67
```
68
68
npm version patch -m "release %s"
69
69
```
70
- 2 . Bump to prerelease, without creating a tag .
70
+ Choose ` patch ` /` minor ` /` major ` to indicate query compatibility:
71
+ - ` patch ` for bugfixes (no changes to queries needed)
72
+ - ` minor ` for added nodes (queries may need changes to use new nodes but will not error)
73
+ - ` major ` for removed or renamed nodes (queries will error if not adapted), other breaking changes
74
+ 2 . Bump to prerelease, without creating a tag:
71
75
```
72
76
npm version --no-git-tag-version prerelease --preid dev && git add package*.json && git commit -m bump
73
77
```
74
- 3 . Push.
78
+ 3 . Push:
75
79
```
76
80
git push --follow-tags
77
81
```
You can’t perform that action at this time.
0 commit comments