Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-pr-template.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ This is a release PR for version **<%= version.actual %>**<%
You will still need to manually publish the cargo crate:

```
$ make VERSION=<latest version> release
$ make VERSION=<%= version.actual %> release
```
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ ifndef VERSION
endif
git pull
cargo update
git tag $(VERSION)
git push origin $(VERSION)
git tag v$(VERSION)
git push origin v$(VERSION)
cargo release publish --execute --verbose