diff --git a/CHANGELOG.md b/CHANGELOG.md index df0335e6..448ab723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [8.24.0](https://github.com/mParticle/mparticle-apple-sdk/compare/v8.23.1...v8.24.0) (2024-05-01) + + +### Bug Fixes + +* Allow Alias When Start and End Time Not Set ([#275](https://github.com/mParticle/mparticle-apple-sdk/issues/275)) ([241ecd4](https://github.com/mParticle/mparticle-apple-sdk/commit/241ecd4fef6c732f885100844c9ff8a24ffbe842)) + + +### Features + +* Add Tracking Support for Custom Domains ([#274](https://github.com/mParticle/mparticle-apple-sdk/issues/274)) ([1584dae](https://github.com/mParticle/mparticle-apple-sdk/commit/1584daed11afabc94f9d6c1e08c1d718e088caee)) + ## [8.23.1](https://github.com/mParticle/mparticle-apple-sdk/compare/v8.23.0...v8.23.1) (2024-04-30) diff --git a/Framework/Info.plist b/Framework/Info.plist index a913caa8..ccaba209 100644 --- a/Framework/Info.plist +++ b/Framework/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 8.23.1 + 8.24.0 CFBundleSignature ???? CFBundleVersion diff --git a/Package.swift b/Package.swift index 9253e222..7efd072b 100644 --- a/Package.swift +++ b/Package.swift @@ -2,11 +2,11 @@ import PackageDescription -let mParticle_Apple_SDK_URL = "https://static.mparticle.com/sdk/ios/v8.23.1/mParticle_Apple_SDK.xcframework.zip" -let mParticle_Apple_SDK_Checksum = "7915fdf7954445a5808515f7b3b3d60a1a3bbcaf486568c30d27ce3a886c2c96" +let mParticle_Apple_SDK_URL = "https://static.mparticle.com/sdk/ios/v8.24.0/mParticle_Apple_SDK.xcframework.zip" +let mParticle_Apple_SDK_Checksum = "4b20f77cca985f4ec828c6e500aee13f535ce67e025e0e09a2766c3d212f10bf" -let mParticle_Apple_SDK_NoLocation_URL = "https://static.mparticle.com/sdk/ios/v8.23.1/mParticle_Apple_SDK_NoLocation.xcframework.zip" -let mParticle_Apple_SDK_NoLocation_Checksum = "4d9cb24ec6df5112b6c4e1dfe16871319c9601d04911c170eda8019975861f5b" +let mParticle_Apple_SDK_NoLocation_URL = "https://static.mparticle.com/sdk/ios/v8.24.0/mParticle_Apple_SDK_NoLocation.xcframework.zip" +let mParticle_Apple_SDK_NoLocation_Checksum = "3ca883f26b5e5e80fba1a178a43a6ad0bbc633e8b1080e04e79009d52166fc1e" let package = Package( name: "mParticle-Apple-SDK", diff --git a/mParticle-Apple-SDK.podspec b/mParticle-Apple-SDK.podspec index 4645419f..68cd8a8d 100644 --- a/mParticle-Apple-SDK.podspec +++ b/mParticle-Apple-SDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "mParticle-Apple-SDK" - s.version = "8.23.1" + s.version = "8.24.0" s.summary = "mParticle Apple SDK." s.description = <<-DESC diff --git a/mParticle-Apple-SDK/MPIConstants.m b/mParticle-Apple-SDK/MPIConstants.m index da8e8383..c41933ca 100644 --- a/mParticle-Apple-SDK/MPIConstants.m +++ b/mParticle-Apple-SDK/MPIConstants.m @@ -1,7 +1,7 @@ #import "MPIConstants.h" // mParticle SDK Version -NSString *const kMParticleSDKVersion = @"8.23.1"; +NSString *const kMParticleSDKVersion = @"8.24.0"; // Message Type (dt) NSString *const kMPMessageTypeKey = @"dt"; diff --git a/mParticle_Apple_SDK.json b/mParticle_Apple_SDK.json index 0f3e9a0b..14d96ac6 100644 --- a/mParticle_Apple_SDK.json +++ b/mParticle_Apple_SDK.json @@ -86,5 +86,6 @@ "8.21.1": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.21.1/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.21.1/mParticle_Apple_SDK.xcframework.zip", "8.22.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.22.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.22.0/mParticle_Apple_SDK.xcframework.zip", "8.23.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.23.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.23.0/mParticle_Apple_SDK.xcframework.zip", - "8.23.1": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.23.1/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.23.1/mParticle_Apple_SDK.xcframework.zip" + "8.23.1": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.23.1/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.23.1/mParticle_Apple_SDK.xcframework.zip", + "8.24.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.24.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.24.0/mParticle_Apple_SDK.xcframework.zip" }