- Squash and merge PR after unit tests pass and approvals then delete the branch.
- Using an IDE pull in head of remote master branch to local.
- Increment version stored in
aws_okta_processor/__init__.py
. Use the latest semantic versioning standard found here as a guide. - Commit version change to local master branch then push to remote with
git push origin master
. - Create a tag matching current version and annotate with attributed changes:
git tag -a v<VERSION> - @person did x y z
- Push tag to remote with
git push origin v<VERSION>
.