Skip to content

Commit

Permalink
chore(release): 8.21.0 [skip ci]
Browse files Browse the repository at this point in the history
# [8.21.0](v8.20.0...v8.21.0) (2024-03-19)

### Bug Fixes

* Correct threading around user notification log ([#261](#261)) ([456160b](456160b))
* Refactor MPUploadBuilder to attempt to eliminate rare crash in withLocation: method ([#262](#262)) ([60cd0c8](60cd0c8))

### Features

* Improve mParticle reset methods ([#263](#263)) ([cde71a2](cde71a2))
  • Loading branch information
mparticle-automation committed Mar 19, 2024
1 parent 3e3e629 commit 87ce71c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# [8.21.0](https://github.com/mParticle/mparticle-apple-sdk/compare/v8.20.0...v8.21.0) (2024-03-19)


### Bug Fixes

* Correct threading around user notification log ([#261](https://github.com/mParticle/mparticle-apple-sdk/issues/261)) ([456160b](https://github.com/mParticle/mparticle-apple-sdk/commit/456160b845c656cc3359425375edb88b7070eac0))
* Refactor MPUploadBuilder to attempt to eliminate rare crash in withLocation: method ([#262](https://github.com/mParticle/mparticle-apple-sdk/issues/262)) ([60cd0c8](https://github.com/mParticle/mparticle-apple-sdk/commit/60cd0c801e4b9da6a5a1c86efd230797391801ab))


### Features

* Improve mParticle reset methods ([#263](https://github.com/mParticle/mparticle-apple-sdk/issues/263)) ([cde71a2](https://github.com/mParticle/mparticle-apple-sdk/commit/cde71a273318a64a7a76279dc5e67c6405fcf0e5))

# [8.20.0](https://github.com/mParticle/mparticle-apple-sdk/compare/v8.19.0...v8.20.0) (2024-03-05)


Expand Down
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>8.20.0</string>
<string>8.21.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import PackageDescription

let mParticle_Apple_SDK_URL = "https://static.mparticle.com/sdk/ios/v8.20.0/mParticle_Apple_SDK.xcframework.zip"
let mParticle_Apple_SDK_Checksum = "cf54cf60e057008f443017c7d901949146b11c579478b6283ed2782da091b224"
let mParticle_Apple_SDK_URL = "https://static.mparticle.com/sdk/ios/v8.21.0/mParticle_Apple_SDK.xcframework.zip"
let mParticle_Apple_SDK_Checksum = "377b94008632b0827351ee24e174d8aa67378c9c3d83b398458fb1de6e659043"

let mParticle_Apple_SDK_NoLocation_URL = "https://static.mparticle.com/sdk/ios/v8.20.0/mParticle_Apple_SDK_NoLocation.xcframework.zip"
let mParticle_Apple_SDK_NoLocation_Checksum = "59beae89367d9e303aac37b05bf82e2ed51446fa94aa707e43e0feb6da855c4e"
let mParticle_Apple_SDK_NoLocation_URL = "https://static.mparticle.com/sdk/ios/v8.21.0/mParticle_Apple_SDK_NoLocation.xcframework.zip"
let mParticle_Apple_SDK_NoLocation_Checksum = "08bf88e6558c897bd0c2c44ca394f47b6bb2889386f32b94e4c1369e3bfd4c4b"

let package = Package(
name: "mParticle-Apple-SDK",
Expand Down
2 changes: 1 addition & 1 deletion mParticle-Apple-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "mParticle-Apple-SDK"
s.version = "8.20.0"
s.version = "8.21.0"
s.summary = "mParticle Apple SDK."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion mParticle-Apple-SDK/MPIConstants.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import "MPIConstants.h"

// mParticle SDK Version
NSString *const kMParticleSDKVersion = @"8.20.0";
NSString *const kMParticleSDKVersion = @"8.21.0";

// Message Type (dt)
NSString *const kMPMessageTypeKey = @"dt";
Expand Down
3 changes: 2 additions & 1 deletion mParticle_Apple_SDK.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,6 @@
"8.17.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.17.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.17.0/mParticle_Apple_SDK.xcframework.zip",
"8.18.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.18.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.18.0/mParticle_Apple_SDK.xcframework.zip",
"8.19.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.19.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.19.0/mParticle_Apple_SDK.xcframework.zip",
"8.20.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.20.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.20.0/mParticle_Apple_SDK.xcframework.zip"
"8.20.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.20.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.20.0/mParticle_Apple_SDK.xcframework.zip",
"8.21.0": "https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.21.0/mParticle_Apple_SDK.framework.zip?alt=https://github.com/mParticle/mparticle-apple-sdk/releases/download/v8.21.0/mParticle_Apple_SDK.xcframework.zip"
}

0 comments on commit 87ce71c

Please sign in to comment.