-
Notifications
You must be signed in to change notification settings - Fork 329
Release Process
John Nguyen edited this page Feb 12, 2021
·
4 revisions
For my own memory and to help other collaborators, here is what happens for each release:
- Bump the version in
Down.podspec
, following semver guidelines. - Push that commit to
master
branch or to your PR branch - Push a new tag with that version #
- e.g.
git tag -a v0.5.1 -m "v0.5.1" && git push origin --tags
- e.g.
- Push the podspec up to CocoaPods
- e.g.
pod trunk push
- e.g.
- Run the github_changelog_generator
- e.g.
github_changelog_generator -u johnxnguyen -p Down
- e.g.
- Commit the
CHANGELOG.md
file changes