Skip to content

Commit

Permalink
all: 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
abarisain committed Dec 18, 2020
1 parent 90947e6 commit 36d609b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BatchExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "BatchExtension"
spec.version = "3.0.1"
spec.version = "3.0.2"
spec.summary = "Batch.com iOS SDK for App Extensions."
spec.homepage = "https://batch.com"
spec.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
8 changes: 4 additions & 4 deletions BatchExtension.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 301;
CURRENT_PROJECT_VERSION = 302;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = U5K2ETC2Y6;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -474,7 +474,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.0.1;
MARKETING_VERSION = 3.0.2;
PRODUCT_BUNDLE_IDENTIFIER = com.batch.BatchExtension;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -492,7 +492,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 301;
CURRENT_PROJECT_VERSION = 302;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = U5K2ETC2Y6;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -506,7 +506,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.0.1;
MARKETING_VERSION = 3.0.2;
PRODUCT_BUNDLE_IDENTIFIER = com.batch.BatchExtension;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.0.2

- Fix an issue where a user would be considered as opted-out even though they were not

# 3.0.1

- Fix an issue where the extension would not work if the App Group wasn't setup properly
Expand Down
2 changes: 1 addition & 1 deletion Sources/Swift/Display Receipt/DisplayReceiptHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ extension DisplayReceiptHelper {
var request = URLRequest(url: DisplayReceiptHelper.displayReceiptUrl)
request.httpMethod = "POST"
request.addValue(Consts.receiptSchemaVersion, forHTTPHeaderField: Consts.receiptHeaderSchemaVersion)
request.addValue("1.0.0-swift", forHTTPHeaderField: Consts.receiptHeaderExtVersion)
request.addValue("3.0.2-swift", forHTTPHeaderField: Consts.receiptHeaderExtVersion)

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

0 comments on commit 36d609b

Please sign in to comment.