Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from fiskaly/feature/v1.1.400
Browse files Browse the repository at this point in the history
Feature/v1.1.400
  • Loading branch information
Benjamin Müllner authored Apr 23, 2020
2 parents 7c43cb0 + 27e5398 commit 9a9887d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
binary "https://storage.googleapis.com/fiskaly-cdn/clients/com.fiskaly.client-ios-all-v1.1.300.carthage.json" == 1.1.300
binary "https://storage.googleapis.com/fiskaly-cdn/clients/com.fiskaly.client-ios-all-v1.1.400.carthage.json" == 1.1.400
4 changes: 2 additions & 2 deletions FiskalySDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 1.1.301;
MARKETING_VERSION = 1.1.400;
PRODUCT_BUNDLE_IDENTIFIER = com.fiskaly.FiskalySDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -442,7 +442,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 1.1.301;
MARKETING_VERSION = 1.1.400;
PRODUCT_BUNDLE_IDENTIFIER = com.fiskaly.FiskalySDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion FiskalySDK/FiskalyHttpClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class FiskalyHttpClient {
"api_key": apiKey,
"api_secret": apiSecret,
"base_url": baseUrl,
"sdk_version": "iOS SDK 1.1.301"
"sdk_version": "iOS SDK 1.1.400"
]

let request = JsonRpcRequest(method: "create-context", params: contextRequestParams)
Expand Down
1 change: 0 additions & 1 deletion FiskalySDK/Results.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class ClientVersion : Codable {

public class SMAERSVersion : Codable {
public var version: String
public var commit_hash: String
}

/*
Expand Down
1 change: 0 additions & 1 deletion FiskalySDKTests/FiskalySDKTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class FiskalySDKTests: XCTestCase {
XCTAssertNotEqual(response.client.source_hash, "")
XCTAssertNotEqual(response.client.commit_hash, "")
XCTAssertNotEqual(response.smaers.version, "")
XCTAssertNotEqual(response.smaers.commit_hash, "")
break;
case .failure(let error):
print("JsonRpcError: \(error.code) \(error.message)")
Expand Down

0 comments on commit 9a9887d

Please sign in to comment.