Skip to content

Commit 36d609b

Browse files
committed
all: 3.0.2
1 parent 90947e6 commit 36d609b

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

BatchExtension.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "BatchExtension"
4-
spec.version = "3.0.1"
4+
spec.version = "3.0.2"
55
spec.summary = "Batch.com iOS SDK for App Extensions."
66
spec.homepage = "https://batch.com"
77
spec.license = { :type => "MIT", :file => "LICENSE" }

BatchExtension.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@
460460
CODE_SIGN_IDENTITY = "";
461461
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
462462
CODE_SIGN_STYLE = Automatic;
463-
CURRENT_PROJECT_VERSION = 301;
463+
CURRENT_PROJECT_VERSION = 302;
464464
DEFINES_MODULE = YES;
465465
DEVELOPMENT_TEAM = U5K2ETC2Y6;
466466
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -474,7 +474,7 @@
474474
"@executable_path/Frameworks",
475475
"@loader_path/Frameworks",
476476
);
477-
MARKETING_VERSION = 3.0.1;
477+
MARKETING_VERSION = 3.0.2;
478478
PRODUCT_BUNDLE_IDENTIFIER = com.batch.BatchExtension;
479479
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
480480
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -492,7 +492,7 @@
492492
CODE_SIGN_IDENTITY = "";
493493
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
494494
CODE_SIGN_STYLE = Automatic;
495-
CURRENT_PROJECT_VERSION = 301;
495+
CURRENT_PROJECT_VERSION = 302;
496496
DEFINES_MODULE = YES;
497497
DEVELOPMENT_TEAM = U5K2ETC2Y6;
498498
DYLIB_COMPATIBILITY_VERSION = 1;
@@ -506,7 +506,7 @@
506506
"@executable_path/Frameworks",
507507
"@loader_path/Frameworks",
508508
);
509-
MARKETING_VERSION = 3.0.1;
509+
MARKETING_VERSION = 3.0.2;
510510
PRODUCT_BUNDLE_IDENTIFIER = com.batch.BatchExtension;
511511
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
512512
PROVISIONING_PROFILE_SPECIFIER = "";

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.0.2
2+
3+
- Fix an issue where a user would be considered as opted-out even though they were not
4+
15
# 3.0.1
26

37
- Fix an issue where the extension would not work if the App Group wasn't setup properly

Sources/Swift/Display Receipt/DisplayReceiptHelper.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ extension DisplayReceiptHelper {
208208
var request = URLRequest(url: DisplayReceiptHelper.displayReceiptUrl)
209209
request.httpMethod = "POST"
210210
request.addValue(Consts.receiptSchemaVersion, forHTTPHeaderField: Consts.receiptHeaderSchemaVersion)
211-
request.addValue("1.0.0-swift", forHTTPHeaderField: Consts.receiptHeaderExtVersion)
211+
request.addValue("3.0.2-swift", forHTTPHeaderField: Consts.receiptHeaderExtVersion)
212212

213213
let task = session.uploadTask(with: request, from: data,
214214
completionHandler: { (data: Data?, response: URLResponse?, error: Error?) in

0 commit comments

Comments
 (0)