Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 654 Bytes

File metadata and controls

31 lines (22 loc) · 654 Bytes

Guide for publication

  1. Create a branch with the name of the version x.x.x

  2. Change the version in version.rb file

$VERSION = 'x.x.x'
  1. Run pod update to update the dependencies
pod update
  1. Update the CHANGELOG.md file

  2. Submit and merge the pull request

  3. Add git tag x.x.x to the merge commit

git tag x.x.x
  1. Push the tag
git push origin x.x.x
  1. The CI will automatically publish this new version

  2. Finally, draft a new release in the Github releases tab (copy & paste the changelog in the release's description).