Skip to content

Commit

Permalink
release 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Oct 23, 2024
1 parent bd9d633 commit 9ccfa5b
Show file tree
Hide file tree
Showing 19 changed files with 21,990 additions and 20,218 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.0.8 (October, 23, 2024)
* add CCPA to `MessagesResponse`
* add ios14 to `MessagesResponse`
* refactor `SPIDFAStatus` to use `SerialName`
* add missing languages to `SPMessageLanguage`
* make enums serialization case insensitive
* refactored `MessagesRequest` for native SDK integration

## 0.0.7 (October, 17, 2024)
* update kotlin 1.9.x -> 2.0.21
* update gradle -> 8.9
Expand Down
4 changes: 2 additions & 2 deletions SPMobileCore.podspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Pod::Spec.new do |spec|
spec.name = 'SPMobileCore'
spec.version = '0.0.7'
spec.version = '0.0.8'
spec.homepage = 'https://github.com/SourcePointUSA/mobile-core.git'
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.7' }
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.8' }
spec.authors = 'André Herculano'
spec.license = { :type => 'APACHE 2' }
spec.summary = 'The internal Network & Data layers used by our mobile SDKs'
Expand Down
20 changes: 10 additions & 10 deletions SPMobileCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,69 +10,69 @@
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SPMobileCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>SPMobileCore.framework/SPMobileCore</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>SPMobileCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>SPMobileCore.framework/SPMobileCore</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SPMobileCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>SPMobileCore.framework/SPMobileCore</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SPMobileCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion core/SPMobileCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'SPMobileCore'
spec.version = '0.0.7'
spec.version = '0.0.8'
spec.homepage = 'https://github.com/SourcePointUSA/mobile-core.git'
spec.source = { :http=> ''}
spec.authors = 'André Herculano'
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
id("signing")
}

val coreVersion = "0.0.7"
val coreVersion = "0.0.8"
group = "com.sourcepoint"
version = coreVersion

Expand Down

0 comments on commit 9ccfa5b

Please sign in to comment.