RELEASE.md
Ensure your local workstation is configured to be able to Sign commits
git checkout main
git pull origin main
# [Unreleased]export RELEASE_VERSION=2.x.y
git commit -a -S -m "Release $RELEASE_VERSION"
git tag -s "v$RELEASE_VERSION" # When prompted for a commit message, enter the 'release notes' style message, just like on the releases page
make test-release
git push origin main --follow-tags
git push origin "v$RELEASE_VERSION"
Update homebrew-shopify toxiproxy.rb manifest
app_version string to your released versionDo a manual check of installing toxiproxy via brew
brew install ./toxiproxy.rb --debug
Note: it's normal to get some errors when homebrew attempts to load the file as a Cask instead of a formula, just make sure that it still gets installed.
PR the version update change and merge