Skip to content

Commit

Permalink
Merge pull request #92 from square/msilvis/bump-version
Browse files Browse the repository at this point in the history
bump the version to 3.5.0 to pick up the latest changes;
  • Loading branch information
MikeSilvis authored Oct 16, 2020
2 parents c3005c0 + 572ff8a commit 658b447
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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

0 comments on commit 658b447

Please sign in to comment.