-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ccnixon
committed
Sep 25, 2018
1 parent
7a2d00e
commit 67397f5
Showing
1 changed file
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
Releasing | ||
========= | ||
|
||
1. Update the version in `Segment-Amplitude.podspec` to a non-beta version. | ||
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-Amplitude.podspec --allow-warnings` | ||
1. Ensure you are on the `master` branch with your latest changes pulled down. | ||
2. Update the version in `Segment-Amplitude.podspec`. | ||
3. Update the `CHANGELOG.md` for the impending release. | ||
4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version) | ||
5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version) | ||
6. `git push origin master --tags` | ||
|
||
This will trigger a workflow in CircleCI that will publish your latest tag to Cocoapods. |