Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 591 Bytes

RELEASING.md

File metadata and controls

14 lines (12 loc) · 591 Bytes

Releasing

After you have merged to master:

  1. Update the version in Segment-Mixpanel.podspec.
  2. Update the CHANGELOG.md for the impending release.
  3. git commit -am "Prepare for release X.Y.Z." (where X.Y.Z is the new version)
  4. git tag -a X.Y.Z -m "Version X.Y.Z" (where X.Y.Z is the new version)
  5. git push && git push --tags
  6. pod trunk push Segment-Mixpanel.podspec --allow-warnings
  7. (Optional) Update the version Segment-Mixpanel.podspec to the next beta version.
  8. (Optional) git commit -am "Prepare next development version."
  9. git push