In this document you'll find all the necessary steps to release a new version of xcodeproj
:
- Make sure you are in the
main
branch. - Determine the next version based on the unreleased changes.
- Add the version section to the
CHANGELOG.md
, update the versions in theREADME.md
. - Commit the changes and tag them
git commit -m "Version x.y.z"
&git tag x.y.z
. - Push the changes
git push origin main --tags
- Create the release on GitHub including the release notes from the
CHANGELOG.md
.