This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Releasing new versions to Cocoapods
arjenfvellinga edited this page Jan 20, 2020
·
5 revisions
- Register with Cocoapods, you will have to login to the mentioned email address and click the link.
pod trunk register iosdev@wearespindle.com 'Devhouse Spindle' --description='Cocoapods with Spindle'
- From develop branch run
git pull
- Create a release branch
git checkout -b release/{version number}
- Add the changes since the last release to
CHANGELOG.md
- Set the correct version number in
VialerSIPLib.podspec
- Add, commit and push these changes
- Merge these changes into master and develop
git checkout develop
git merge release/{version number}
git checkout master
git merge release/{version number}
- Tag master branch with the release version
git tag {version number} -m "{version number}"
- Run the following commands to update github:
git push origin master
git push origin develop
git push origin --tags
git push origin :release/version-number
- Run
pod trunk push VialerSIPLib.podspec --use-libraries --allow-warnings
-
You can check if the update has been applied: https://cocoapods.org/pods/VialerSIPLib
-
Also mark the new version as released on Github by filing in {version_number} in https://github.com/VoIPGRID/VialerSIPLib/releases/new and press publish release