We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f57b882 commit de86562Copy full SHA for de86562
.github/release-pr-template.ejs
@@ -9,5 +9,5 @@ This is a release PR for version **<%= version.actual %>**<%
9
You will still need to manually publish the cargo crate:
10
11
```
12
-$ make VERSION=<latest version> release
+$ make VERSION=<%= version.actual %> release
13
makefile
@@ -11,6 +11,6 @@ ifndef VERSION
endif
git pull
cargo update
14
- git tag $(VERSION)
15
- git push origin $(VERSION)
+ git tag v$(VERSION)
+ git push origin v$(VERSION)
16
cargo release publish --execute --verbose
0 commit comments