[#415] Update TCA library to version 0.40.2 (#419)

This commit is contained in:
Michal Fousek 2022-09-22 16:48:13 +02:00 committed by GitHub
parent 4c8bbcede2
commit a38f594cfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 5 deletions

View File

@ -2090,7 +2090,7 @@
repositoryURL = "https://github.com/pointfreeco/swift-composable-architecture";
requirement = {
kind = exactVersion;
version = 0.39.0;
version = 0.40.2;
};
};
9E2AC0FD27D8EC120042AA47 /* XCRemoteSwiftPackageReference "MnemonicSwift" */ = {

View File

@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/combine-schedulers",
"state" : {
"revision" : "f7c8277f05f27a5bfb2f6ecccb0bad126ffcf472",
"version" : "0.7.0"
"revision" : "aa3e575929f2bcc5bad012bd2575eae716cbcdf7",
"version" : "0.8.0"
}
},
{
@ -68,8 +68,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-composable-architecture",
"state" : {
"revision" : "108e3a536fcebb16c4f247ef92c2d7326baf9fe3",
"version" : "0.39.0"
"revision" : "9ea8c763061287052a68d5e6723fed45e898b7d9",
"version" : "0.40.2"
}
},
{

View File

@ -1,5 +1,6 @@
import ComposableArchitecture
import ZcashLightClientKit
import Foundation
typealias AppReducer = Reducer<AppState, AppAction, AppEnvironment>
typealias AppStore = Store<AppState, AppAction>

View File

@ -6,6 +6,7 @@
//
import ComposableArchitecture
import Foundation
typealias ScanReducer = Reducer<ScanState, ScanAction, ScanEnvironment>
typealias ScanStore = Store<ScanState, ScanAction>

View File

@ -7,6 +7,8 @@
import ComposableArchitecture
import ZcashLightClientKit
import Foundation
typealias TransactionAmountTextFieldReducer = Reducer<
TransactionAmountTextFieldState,
TransactionAmountTextFieldAction,