Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump the version to 3.5.0 to pick up the latest changes; #92

Merged
merged 2 commits into from
Oct 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PODS:
- OCMock (3.1)
- SquarePointOfSaleSDK (3.4.1)
- SquarePointOfSaleSDK/SampleApp (3.4.1)
- SquarePointOfSaleSDK/Tests (3.4.1):
- SquarePointOfSaleSDK (3.5.0)
- SquarePointOfSaleSDK/SampleApp (3.5.0)
- SquarePointOfSaleSDK/Tests (3.5.0):
- OCMock (= 3.1)

DEPENDENCIES:
Expand All @@ -20,7 +20,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
OCMock: 721c11680ae2d65d67f40932777194daf7002781
SquarePointOfSaleSDK: 7cd8c9bd790e33e837960e21f84d68a893a39a84
SquarePointOfSaleSDK: 1f69421c2d46e812cb65a0c6edd3e19aef339740

PODFILE CHECKSUM: a679ea1c4a7a65af08221a21783dd323549bd283

Expand Down
2 changes: 1 addition & 1 deletion Sources/SCCAPIRequest.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#import "SCCMoney.h"
#import "SCCMoney+Serialization.h"

NSString *__nonnull const SCCSDKVersion = @"3.4.1";
NSString *__nonnull const SCCSDKVersion = @"3.5.0";
NSString *__nonnull const SCCAPIVersion = @"1.3";

NSString *__nonnull const SCCAPIRequestSDKVersionKey = @"sdk_version";
Expand Down
2 changes: 1 addition & 1 deletion SquarePointOfSaleSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SquarePointOfSaleSDK'
s.version = '3.4.1'
s.version = '3.5.0'
s.summary = 'SDK for easier use of Square\'s Point of Sale app-switching API on iOS'
s.homepage = 'https://github.com/square/SquarePointOfSaleSDK-iOS/'
s.license = { :type => 'Apache License, Version 2.0', :text => "© #{ Date.today.year } Square, Inc." }
Expand Down
2 changes: 1 addition & 1 deletion Tests/SCAPIRequestTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ - (void)test_initializerSetsAllProperties;
XCTAssertTrue([request.notes isEqualToString:@"notes"]);
XCTAssertTrue([request.customerID isEqualToString:@"customer-id"]);
XCTAssertTrue([request.apiVersion isEqualToString:@"1.3"]);
XCTAssertTrue([request.sdkVersion isEqualToString:@"3.4.1"]);
XCTAssertTrue([request.sdkVersion isEqualToString:@"3.5.0"]);
XCTAssertEqual(request.supportedTenderTypes, SCCAPIRequestTenderTypeCard);
XCTAssertEqual(request.clearsDefaultFees, YES);
XCTAssertEqual(request.returnsAutomaticallyAfterPayment, YES);
Expand Down