You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Removed Result
* Removing Result from project
* Added NoError and ResultProtocol for Swift.Result
* Using Swift.Error in lieu of AnyError
* Replaced NoError with Never
* Test fixes
* Specify the correct Error type in Never overloads
* Fix tests
* Update SwiftPM
* Update CI
* Remove the last vestiges of Result.framework
* Rename assumeNevers back to assumeNoErrors
Copy file name to clipboardexpand all lines: README.md
+3-5
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ ReactiveSwift to your `Cartfile`:
75
75
github "ReactiveCocoa/ReactiveSwift" ~> 5.0
76
76
```
77
77
78
-
If you use Carthage to build your dependencies, make sure you have added `ReactiveSwift.framework`, and `Result.framework` to the "_Linked Frameworks and Libraries_" section of your target, and have included them in your Carthage framework copying build phase.
78
+
If you use Carthage to build your dependencies, make sure you have added `ReactiveSwift.framework` to the "_Linked Frameworks and Libraries_" section of your target, and have included them in your Carthage framework copying build phase.
79
79
80
80
#### CocoaPods
81
81
@@ -100,12 +100,10 @@ of your package in `Package.swift`:
100
100
1. Add the ReactiveSwift repository as a [submodule][] of your
101
101
application’s repository.
102
102
1. Run `git submodule update --init --recursive` from within the ReactiveCocoa folder.
103
-
1. Drag and drop `ReactiveSwift.xcodeproj` and
104
-
`Carthage/Checkouts/Result/Result.xcodeproj` into your application’s Xcode
103
+
1. Drag and drop `ReactiveSwift.xcodeproj` into your application’s Xcode
105
104
project or workspace.
106
105
1. On the “General” tab of your application target’s settings, add
107
-
`ReactiveSwift.framework`, and `Result.framework`
108
-
to the “Embedded Binaries” section.
106
+
`ReactiveSwift.framework` to the “Embedded Binaries” section.
109
107
1. If your application target does not contain Swift code at all, you should also
110
108
set the `EMBEDDED_CONTENT_CONTAINS_SWIFT` build setting to “Yes”.
Copy file name to clipboardexpand all lines: ReactiveSwift-UIExamples.playground/Pages/ValidatingProperty.xcplaygroundpage/Sources/UIKitExtensions.swift
+2-3
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
import Foundation
2
2
import UIKit
3
3
import ReactiveSwift
4
-
importenum Result.NoError
5
4
6
5
// These extensions mimics the ReactiveCocoa API, but not in a complete way.
7
6
//
@@ -62,7 +61,7 @@ extension Reactive where Base: UILabel {
0 commit comments