Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: v0.7.2 #442

Merged
merged 11 commits into from
Oct 28, 2022
Prev Previous commit
Next Next commit
misc: get Cargo.lock changes
  • Loading branch information
chesedo committed Oct 28, 2022
commit 623f80b7c61b4ec93d9418bde301ba267264b70f
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,25 +108,25 @@ bump-version: --validate-version
$(call next, bump-resources)

bump-resources:
git commit -am "chore: v$(version)"
git commit -m "chore: v$(version)"
fastmod --fixed-strings $(current) $(version) resources

$(call next, bump-examples)

bump-examples:
git commit -am "chore: resources v$(version)"
git commit -m "chore: resources v$(version)"
fastmod --fixed-strings $(current) $(version) examples

$(call next, bump-misc)

bump-misc:
git commit -am "docs: v$(version)"
git commit -m "docs: v$(version)"
fastmod --fixed-strings $(current) $(version)

$(call next, bump-final)

bump-final:
git commit -am "misc: v$(version)"
git commit -m "misc: v$(version)"
git push --set-upstream origin $$(git rev-parse --abbrev-ref HEAD)

echo "Make pull request and confirm everything is okay. Then run:"
Expand Down Expand Up @@ -158,6 +158,7 @@ deploy-examples/%:
cd examples/$(*); $(shuttle-command) deploy

define next
cargo check # To update Cargo.lock
git add --all
git --no-pager diff --staged

Expand Down