Skip to content

Commit eac32b7

Browse files
committed
all: bump version to 3.0.3
1 parent 9fb0579 commit eac32b7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-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.2"
4+
spec.version = "3.0.3"
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 = 302;
463+
CURRENT_PROJECT_VERSION = 303;
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.2;
477+
MARKETING_VERSION = 3.0.3;
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 = 302;
495+
CURRENT_PROJECT_VERSION = 303;
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.2;
509+
MARKETING_VERSION = 3.0.3;
510510
PRODUCT_BUNDLE_IDENTIFIER = com.batch.BatchExtension;
511511
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
512512
PROVISIONING_PROFILE_SPECIFIER = "";

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("3.0.2-swift", forHTTPHeaderField: Consts.receiptHeaderExtVersion)
211+
request.addValue("3.0.3-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)