Skip to content

Commit

Permalink
Prepare for release 3.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
migs647 committed Apr 15, 2021
1 parent 2e5a1cc commit 3c9f9be
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Change Log
==========

Version 3.3.0 *(15th April, 2021)
-------------------------------------
* Fix issue while reading values from SEGGroupPayload in group() call.

* Fix [Amplitude setGroup:groupName:] call in SEGAmplitudeIntegration.

* Fix issue when reset is called. Reinitialize identify otherwise old traits will continue through new identify calls.

* Check if imports exist without segment framework.

* Add tvOS deployment target to podspec.

* Remove unnecessary platform specifier from Podspec.

Version 3.2.4 *(2nd February, 2021)
-------------------------------------
* Fix issue compiling staticly where headers cannot be located.
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "amplitude/Amplitude-iOS" ~> 5.2.1
github "amplitude/Amplitude-iOS" ~> 7.0.1
github "segmentio/analytics-ios"
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "amplitude/Amplitude-iOS" "v5.3.0"
github "amplitude/Amplitude-iOS" "v7.3.0"
github "segmentio/analytics-ios" "4.1.3"
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PODS:
- OCHamcrest (7.2.0)
- OCMockito (5.1.3):
- OCHamcrest (~> 7.0)
- Segment-Amplitude (3.2.3):
- Segment-Amplitude (3.3.0):
- Amplitude (~> 7.0.1)
- Analytics
- Specta (1.0.7)
Expand Down Expand Up @@ -35,9 +35,9 @@ SPEC CHECKSUMS:
Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5
OCHamcrest: 8097ab14ab9366f44cd66638aa589fea3840d779
OCMockito: 677cbb4a18fd492b5a4fb10144dada4de5ddb877
Segment-Amplitude: bff743e8f0897febe638a10fc43945f124f87ff1
Segment-Amplitude: 65c094a8c43d2c4275a3b93dade8d16cb0e1bf63
Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66

PODFILE CHECKSUM: 166e86977ca5ed7a88d476e1f295a6953c3274c0

COCOAPODS: 1.10.1
COCOAPODS: 1.10.0
8 changes: 5 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ Releasing
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. `carthage update --platform ios && carthage build --platform ios --no-skip-current`
5. In Finder, go into `Carthage/Build/iOS` and compress Segment_Amplitude.framework and .dsym.
This will create `Archive.zip`, which you'll need later.
4. `carthage update --platform ios && carthage build --platform ios --no-skip-current --use-frameworks`
Note: May need to use this method to get there: https://github.com/Carthage/Carthage/blob/master/Documentation/Xcode12Workaround.md

5. In Finder, go into `Carthage/Build/` and compress Segment_Amplitude.xcframework.
This will create `Segment_Amplitude.xcframework.zip`, which you'll need later.
6. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
7. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
8. `git push && git push --tags`
Expand Down
2 changes: 1 addition & 1 deletion Segment-Amplitude.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Segment-Amplitude"
s.version = "3.2.4"
s.version = "3.3.0"
s.summary = "Amplitude Integration for Segment's analytics-ios library."

s.description = <<-DESC
Expand Down

0 comments on commit 3c9f9be

Please sign in to comment.