Skip to content

Commit

Permalink
release 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilveirah committed Sep 24, 2024
1 parent d53bcd7 commit 8774638
Show file tree
Hide file tree
Showing 19 changed files with 33,916 additions and 32,866 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.0.5 (September, 18, 2024)
* implement `/custom-metrics` call
* implement network request timeout
* improve network error handling
* call `/custom-metrics` on error

## 0.0.4 (September, 12, 2024)
* rename `GDPRConsent.ConsentStatusGCMStatus` to `GDPRConsent.GCMStatus`
* add missing properties to `ConsentStatus`
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.4'
spec.version = '0.0.5'
spec.homepage = 'https://github.com/SourcePointUSA/mobile-core.git'
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.4' }
spec.source = { :git => 'https://github.com/SourcePointUSA/mobile-core.git', :tag => '0.0.5' }
spec.authors = 'André Herculano'
spec.license = { :type => 'APACHE 2' }
spec.summary = 'The internal Network & Data layers used by our mobile SDKs'
Expand Down
10 changes: 5 additions & 5 deletions SPMobileCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@
<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>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>
Expand Down
2,881 changes: 1,525 additions & 1,356 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.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
2,881 changes: 1,525 additions & 1,356 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.

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

Expand Down

0 comments on commit 8774638

Please sign in to comment.