Skip to content

Commit

Permalink
4.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
unity-thull committed Jul 6, 2021
1 parent b9bc1ea commit 3aff042
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [4.13.2](https://github.com/deltaDNA/ios-sdk/releases/tag/4.13.2) (2021-07-06)
### Fixed
- Signal purchase generated events now include the correct `transactionServer` parameter

## [4.13.1](https://github.com/deltaDNA/ios-sdk/releases/tag/4.13.1) (2021-04-23)
### New
- Signal purchase methods now generate verifiable transaction events
Expand Down
4 changes: 2 additions & 2 deletions DeltaDNA.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |spec|

# Spec Metadata
spec.name = "DeltaDNA"
spec.version = "4.13.1"
spec.version = "4.13.2"
spec.summary = "A gaming analytics platform."

spec.homepage = "https://deltadna.com"
Expand All @@ -18,7 +18,7 @@ Pod::Spec.new do |spec|
spec.platform = :ios

# Source Location
spec.source = { :http => "https://github.com/deltaDNA/ios-sdk/releases/download/4.13.1/DeltaDNA-4.13.1.zip" }
spec.source = { :http => "https://github.com/deltaDNA/ios-sdk/releases/download/4.13.2/DeltaDNA-4.13.2.zip" }

# Source Code
spec.vendored_frameworks = 'build/Frameworks/DeltaDNA.xcframework'
Expand Down
1 change: 1 addition & 0 deletions DeltaDNA/DDNASDK.m
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ - (void) recordSignalTrackingPurchaseEventWithRealCurrencyAmount
DDNATransaction *transactionEvent = [DDNATransaction transactionWithName:@"Pinpointer Signal Transaction" type:@"PURCHASE" productsReceived:placeholderProduct productsSpent:placeholderProduct];
[transactionEvent setReceipt:transactionReceipt];
[transactionEvent setTransactionId:transactionID];
[transactionEvent setServer:@"APPLE"];
[self recordEvent:transactionEvent];
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion DeltaDNA/DDNASettings.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#import "DDNASettings.h"

NSString *const DDNA_SDK_VERSION = @"iOS SDK v4.13.1";
NSString *const DDNA_SDK_VERSION = @"iOS SDK v4.13.2";
NSString *const DDNA_ENGAGE_API_VERSION = @"4";

NSString *const DDNA_EVENT_STORAGE_PATH = @"{persistent_path}";
Expand Down
2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ target 'MyApp' do
# 如果你使用Swift或者想要使用动态框架,请取消此行注释
use_frameworks!

pod 'DeltaDNA', '~> 4.13.1'
pod 'DeltaDNA', '~> 4.13.2'

target 'MyAppTests' do
inherit! :search_paths
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ target 'MyApp' do
# Uncomment this line if you're using Swift or would like to use dynamic frameworks
use_frameworks!

pod 'DeltaDNA', '~> 4.13.1'
pod 'DeltaDNA', '~> 4.13.2'

target 'MyAppTests' do
inherit! :search_paths
Expand Down
4 changes: 2 additions & 2 deletions buildFrameworks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ xcodebuild -create-xcframework -framework archives/ios_devices.xcarchive/Product

# Compress the archive ready for distribution to GitHub
rm build/*.zip
zip -r DeltaDNA-4.13.1.zip build
mv DeltaDNA-4.13.1.zip build/
zip -r DeltaDNA-4.13.2.zip build
mv DeltaDNA-4.13.2.zip build/

0 comments on commit 3aff042

Please sign in to comment.