From f4ad690480f5d94b73dae418403db15802c2978c Mon Sep 17 00:00:00 2001 From: Mike Silvis Date: Thu, 15 Oct 2020 18:56:48 -0400 Subject: [PATCH] bump the version to 3.5.0 to pick up the latest changes; --- Podfile.lock | 8 ++++---- Sources/SCCAPIRequest.m | 2 +- SquarePointOfSaleSDK.podspec | 2 +- Tests/SCAPIRequestTests.m | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Podfile.lock b/Podfile.lock index 671c31f..b23587d 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -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: @@ -20,7 +20,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: OCMock: 721c11680ae2d65d67f40932777194daf7002781 - SquarePointOfSaleSDK: 7cd8c9bd790e33e837960e21f84d68a893a39a84 + SquarePointOfSaleSDK: 1f69421c2d46e812cb65a0c6edd3e19aef339740 PODFILE CHECKSUM: a679ea1c4a7a65af08221a21783dd323549bd283 diff --git a/Sources/SCCAPIRequest.m b/Sources/SCCAPIRequest.m index 881b9c0..eef1284 100644 --- a/Sources/SCCAPIRequest.m +++ b/Sources/SCCAPIRequest.m @@ -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"; diff --git a/SquarePointOfSaleSDK.podspec b/SquarePointOfSaleSDK.podspec index d2dab4f..4ef5b6f 100644 --- a/SquarePointOfSaleSDK.podspec +++ b/SquarePointOfSaleSDK.podspec @@ -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." } diff --git a/Tests/SCAPIRequestTests.m b/Tests/SCAPIRequestTests.m index 0ed43a5..10c1f10 100644 --- a/Tests/SCAPIRequestTests.m +++ b/Tests/SCAPIRequestTests.m @@ -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);