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