Skip to content

Commit

Permalink
Merge pull request #29 from SourcePointUSA/prepare-0.0.10
Browse files Browse the repository at this point in the history
Prepare release v 0.0.10
  • Loading branch information
Nevazhnovu authored Dec 12, 2024
2 parents ff915c0 + 49b0d0b commit e1ea4ec
Show file tree
Hide file tree
Showing 17 changed files with 4,492 additions and 1,465 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.0.10 (December, 2, 2024)
* [DIA-3496](https://sourcepoint.atlassian.net/browse/DIA-3496) Implement `GET` consent-all and reject-all calls
* [DIA-3497](https://sourcepoint.atlassian.net/browse/DIA-3497) Implement `POST` gdpr choice call
* [DIA-3498](https://sourcepoint.atlassian.net/browse/DIA-3498) Implement `POST` ccpa choice call
* [DIA-3499](https://sourcepoint.atlassian.net/browse/DIA-3499) Implement `POST` usnat choice call
* [DIA-4801](https://sourcepoint.atlassian.net/browse/DIA-4801) Implement `POST` ReportIdfaStatus

## 0.0.9 (October, 25, 2024)
* fix `MessagesRequest.Body.CCPA` renaming `consentStatus` to `status`
* fix `MessagesResponse.Campaigns` by making their derived consent classes optional
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.9'
spec.version = '0.0.10'
spec.homepage = 'https://github.com/SourcePointUSA/mobile-core.git'
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.9' }
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.10' }
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: 5 additions & 13 deletions SPMobileCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>SPMobileCore.framework/SPMobileCore</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
Expand All @@ -24,43 +22,37 @@
<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>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>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>
Expand Down
1,481 changes: 1,119 additions & 362 deletions SPMobileCore.xcframework/ios-arm64/SPMobileCore.framework/Headers/SPMobileCore.h

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.
1,481 changes: 1,119 additions & 362 deletions SPMobileCore.xcframework/tvos-arm64/SPMobileCore.framework/Headers/SPMobileCore.h

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.
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.9'
spec.version = '0.0.10'
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.9"
val coreVersion = "0.0.10"
group = "com.sourcepoint"
version = coreVersion

Expand Down

0 comments on commit e1ea4ec

Please sign in to comment.