Skip to content

Commit

Permalink
release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Sep 10, 2024
1 parent 80b4c1d commit c431c6b
Show file tree
Hide file tree
Showing 19 changed files with 29,760 additions and 30,163 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.3 (September, 06, 2024)
* Add Support to CCPA
* Add missing fields to MetaData response
* Improve GitHub action build time

## 0.0.2 (September, 06, 2024)
* Initial release to Cocoapods

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.2'
spec.version = '0.0.3'
spec.homepage = 'https://github.com/SourcePointUSA/mobile-core.git'
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.2' }
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.3' }
spec.authors = 'André Herculano'
spec.license = { :type => 'APACHE 2' }
spec.summary = 'The internal Network & Data layers used by our mobile SDKs'
Expand Down
18 changes: 9 additions & 9 deletions SPMobileCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,58 +10,58 @@
<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>ios-arm64</string>
<key>LibraryPath</key>
<string>SPMobileCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</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_x86_64-simulator</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SPMobileCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -70,7 +70,7 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
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.2'
spec.version = '0.0.3'
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.2"
val coreVersion = "0.0.3"
group = "com.sourcepoint"
version = coreVersion

Expand Down

0 comments on commit c431c6b

Please sign in to comment.