Skip to content

Commit

Permalink
Merge pull request #29 from Karibash/release/1.1.1
Browse files Browse the repository at this point in the history
Release/1.1.1
  • Loading branch information
Karibash authored Jul 22, 2020
2 parents c8e654a + 7ba6eb0 commit 597b756
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion RxCoreNFC.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "RxCoreNFC"
spec.version = "1.1.0"
spec.version = "1.1.1"
spec.summary = "Reactive extension for the CoreNFC."
spec.description = <<-DESC
Reactive extension for the CoreNFC.
Expand Down
4 changes: 2 additions & 2 deletions RxCoreNFC.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = karibash.RxCoreNFC;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -593,7 +593,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = karibash.RxCoreNFC;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
4 changes: 2 additions & 2 deletions Sources/NFCFeliCaTag/Entity/RxNFCFeliCaPollingResult.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaPollingResult {
let manufactureParameter: Data
let requestData: Data
public let manufactureParameter: Data
public let requestData: Data
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaReadWithoutEncryptionResult {
let statusFlag: RxNFCFeliCaStatusFlag
let dataList: [Data]
public let statusFlag: RxNFCFeliCaStatusFlag
public let dataList: [Data]
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaRequestResponseResult {
let mode: Int
public let mode: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaRequestServiceResult {
let nodeKeyVersionList: [Data]
public let nodeKeyVersionList: [Data]
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import CoreNFC

@available(iOS 13.0, *)
public struct RxNFCFeliCaRequestServiceV2Result {
let statusFlag: RxNFCFeliCaStatusFlag
let encryptionIdentifier: EncryptionId
let nodeKeyVersionListAES: [Data]
let nodeKeyVersionListDES: [Data]
public let statusFlag: RxNFCFeliCaStatusFlag
public let encryptionIdentifier: EncryptionId
public let nodeKeyVersionListAES: [Data]
public let nodeKeyVersionListDES: [Data]
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaRequestSpecificationVersionResult {
let statusFlag: RxNFCFeliCaStatusFlag
let basicVersion: Data
let optionVersion: Data
public let statusFlag: RxNFCFeliCaStatusFlag
public let basicVersion: Data
public let optionVersion: Data
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaRequestSystemCodeResult {
let systemCodeList: [Data]
public let systemCodeList: [Data]
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaResetModeResult {
let statusFlag: RxNFCFeliCaStatusFlag
public let statusFlag: RxNFCFeliCaStatusFlag
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaSendFeliCaCommandResult {
let data: Data
public let data: Data
}
4 changes: 2 additions & 2 deletions Sources/NFCFeliCaTag/Entity/RxNFCFeliCaStatusFlag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaStatusFlag {
let statusFlag1: Int
let statusFlag2: Int
public let statusFlag1: Int
public let statusFlag2: Int
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCFeliCaWriteWithoutEncryptionResult {
let statusFlag: RxNFCFeliCaStatusFlag
public let statusFlag: RxNFCFeliCaStatusFlag
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCMiFareSendMiFareCommandResult {
let data: Data
public let data: Data
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation

@available(iOS 13.0, *)
public struct RxNFCMiFareSendMiFareISO7816CommandResult {
let data: Data
let sw1: UInt8
let sw2: UInt8
public let data: Data
public let sw1: UInt8
public let sw2: UInt8
}

0 comments on commit 597b756

Please sign in to comment.