Skip to content

Commit

Permalink
bump mixpanel to 4.0.3 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanjcharles authored Oct 3, 2022
1 parent 4d1c17a commit e8a17ea
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
17 changes: 17 additions & 0 deletions Example/BasicExample/BasicExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
46EDC71127C6B8D200B870D7 /* BasicExampleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EDC71027C6B8D200B870D7 /* BasicExampleUITests.swift */; };
46EDC71327C6B8D200B870D7 /* BasicExampleUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EDC71227C6B8D200B870D7 /* BasicExampleUITestsLaunchTests.swift */; };
46EDC72127C6B92C00B870D7 /* Segment in Frameworks */ = {isa = PBXBuildFile; productRef = 46EDC72027C6B92C00B870D7 /* Segment */; };
823B068D28E6199200E8899C /* Mixpanel in Frameworks */ = {isa = PBXBuildFile; productRef = 823B068C28E6199200E8899C /* Mixpanel */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -53,6 +54,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
823B068D28E6199200E8899C /* Mixpanel in Frameworks */,
465ACC5627CFFC0D0025BD02 /* SegmentMixpanel in Frameworks */,
46EDC72127C6B92C00B870D7 /* Segment in Frameworks */,
);
Expand Down Expand Up @@ -158,6 +160,7 @@
packageProductDependencies = (
46EDC72027C6B92C00B870D7 /* Segment */,
465ACC5527CFFC0D0025BD02 /* SegmentMixpanel */,
823B068C28E6199200E8899C /* Mixpanel */,
);
productName = BasicExample;
productReference = 46EDC6F227C6B8D100B870D7 /* BasicExample.app */;
Expand Down Expand Up @@ -233,6 +236,7 @@
mainGroup = 46EDC6E927C6B8D100B870D7;
packageReferences = (
46EDC71F27C6B92C00B870D7 /* XCRemoteSwiftPackageReference "analytics-swift" */,
823B068B28E6199200E8899C /* XCRemoteSwiftPackageReference "mixpanel-swift" */,
);
productRefGroup = 46EDC6F327C6B8D100B870D7 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -608,6 +612,14 @@
minimumVersion = 1.1.2;
};
};
823B068B28E6199200E8899C /* XCRemoteSwiftPackageReference "mixpanel-swift" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/mixpanel/mixpanel-swift";
requirement = {
branch = master;
kind = branch;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
Expand All @@ -620,6 +632,11 @@
package = 46EDC71F27C6B92C00B870D7 /* XCRemoteSwiftPackageReference "analytics-swift" */;
productName = Segment;
};
823B068C28E6199200E8899C /* Mixpanel */ = {
isa = XCSwiftPackageProductDependency;
package = 823B068B28E6199200E8899C /* XCRemoteSwiftPackageReference "mixpanel-swift" */;
productName = Mixpanel;
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = 46EDC6EA27C6B8D100B870D7 /* Project object */;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"package": "Mixpanel",
"repositoryURL": "https://github.com/mixpanel/mixpanel-swift",
"state": {
"branch": null,
"revision": "b1ff3fd1b5cb6e0228938e8008320ebfe701b3e4",
"version": "3.1.5"
"branch": "master",
"revision": "770953c8d6bddd03afc4b85491800cb60bd52f00",
"version": null
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let package = Package(
.package(
name: "Mixpanel",
url: "https://github.com/mixpanel/mixpanel-swift",
from: "3.1.3"
from: "4.0.3"
)
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/SegmentMixpanel/MixpanelDestination.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class MixpanelDestination: DestinationPlugin, RemoteNotifications {

// Initialize mixpanel
if let token = mixpanelSettings?.token {
mixpanel = Mixpanel.initialize(token: token)
mixpanel = Mixpanel.initialize(token: token, trackAutomaticEvents: false)
}

// Change the endpoint if euro one is set
Expand Down

0 comments on commit e8a17ea

Please sign in to comment.