Skip to content

Commit

Permalink
RxSwift 6
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnEstropia committed Jan 3, 2021
1 parent 08baa32 commit 1f39621
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "JohnEstropia/CoreStore" >= 7.3.0
github "ReactiveX/RxSwift" >= 5.1.1
github "ReactiveX/RxSwift" >= 6.0.0
2 changes: 1 addition & 1 deletion Carthage/Checkouts/RxSwift
Submodule RxSwift updated 560 files
6 changes: 3 additions & 3 deletions RxCoreStore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxCoreStore"
s.version = "2.2.0"
s.version = "2.3.0"
s.license = "MIT"
s.summary = "RxSwift extensions for CoreStore"
s.homepage = "https://github.com/JohnEstropia/RxCoreStore"
Expand All @@ -15,6 +15,6 @@ Pod::Spec.new do |s|
s.frameworks = "Foundation", "CoreData"
s.requires_arc = true
s.dependency "CoreStore", ">=7.3.0"
s.dependency "RxCocoa", ">=5.1.1"
s.dependency "RxSwift", ">=5.1.1"
s.dependency "RxCocoa", ">=6.0.0"
s.dependency "RxSwift", ">=6.0.0"
end
4 changes: 2 additions & 2 deletions RxCoreStore.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@
INFOPLIST_FILE = Sources/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2.2.0;
MARKETING_VERSION = 2.3.0;
PRODUCT_BUNDLE_IDENTIFIER = com.johnestropia.RxCoreStore;
PRODUCT_NAME = RxCoreStore;
SKIP_INSTALL = YES;
Expand All @@ -459,7 +459,7 @@
INFOPLIST_FILE = Sources/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2.2.0;
MARKETING_VERSION = 2.3.0;
PRODUCT_BUNDLE_IDENTIFIER = com.johnestropia.RxCoreStore;
PRODUCT_NAME = RxCoreStore;
SKIP_INSTALL = YES;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1200"
LastUpgradeVersion = "1230"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
4 changes: 2 additions & 2 deletions RxCoreStoreTests/RxCoreStoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class RxCoreStoreTests: XCTestCase {

transactionExpectation.fulfill()
},
onError: { (error) in
onFailure: { (error) in

XCTFail(error.localizedDescription)
}
Expand All @@ -196,7 +196,7 @@ class RxCoreStoreTests: XCTestCase {
XCTAssertEqual(Set(people.map({ $0.name.value })), Set(["John", "Bob", "Joe"]))
importExpectation.fulfill()
},
onError: { (error) in
onFailure: { (error) in

XCTFail(error.localizedDescription)
}
Expand Down
10 changes: 5 additions & 5 deletions Sources/RxDataStack+Transaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ extension Reactive where Base == DataStack {
},
failure: { (error) in

observable(.error(error))
observable(.failure(error))
}
)
return Disposables.create()
Expand Down Expand Up @@ -129,7 +129,7 @@ extension Reactive where Base == DataStack {
},
failure: { (error) in

observable(.error(error))
observable(.failure(error))
}
)
return Disposables.create()
Expand Down Expand Up @@ -179,7 +179,7 @@ extension Reactive where Base == DataStack {
},
failure: { (error) in

observable(.error(error))
observable(.failure(error))
}
)
return Disposables.create()
Expand Down Expand Up @@ -239,7 +239,7 @@ extension Reactive where Base == DataStack {
},
failure: { (error) in

observable(.error(error))
observable(.failure(error))
}
)
return Disposables.create()
Expand Down Expand Up @@ -286,7 +286,7 @@ extension Reactive where Base == DataStack {
},
failure: { (error) in

observable(.error(error))
observable(.failure(error))
}
)
return Disposables.create()
Expand Down

0 comments on commit 1f39621

Please sign in to comment.