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
@@ -163,7 +163,7 @@ one. Just think of how much code that would take to do by hand!
163
163
164
164
#### Receiving the results
165
165
166
-
Since the source of search strings is a `Signal` which has a hot signal semantic,
166
+
Since the source of search strings is a `Signal` which has a hot signal semantic,
167
167
the transformations we applied are automatically evaluated whenever new values are
168
168
emitted from `searchStrings`.
169
169
@@ -174,10 +174,10 @@ searchResults.observe { event in
174
174
switch event {
175
175
caselet .value(results):
176
176
print("Search results: \(results)")
177
-
177
+
178
178
caselet .failed(error):
179
179
print("Search error: \(error)")
180
-
180
+
181
181
case .completed, .interrupted:
182
182
break
183
183
}
@@ -285,7 +285,7 @@ While ReactiveCocoa was inspired and heavily influenced by [ReactiveX][] (Rx), R
285
285
an opinionated implementation of [functional reactive programming][], and _intentionally_ not a
286
286
direct port like [RxSwift][].
287
287
288
-
ReactiveSwift differs from ReactiveX in places that:
288
+
ReactiveSwift differs from ReactiveX in places that:
289
289
290
290
* Results in a simpler API
291
291
* Addresses common sources of confusion
@@ -369,7 +369,7 @@ If you use [Carthage][] to manage your dependencies, simply add
369
369
ReactiveSwift to your `Cartfile`:
370
370
371
371
```
372
-
github "ReactiveCocoa/ReactiveSwift" "1.0.0-rc.3"
372
+
github "ReactiveCocoa/ReactiveSwift" ~> 1.0
373
373
```
374
374
375
375
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.
@@ -380,7 +380,7 @@ If you use [CocoaPods][] to manage your dependencies, simply add
380
380
ReactiveSwift to your `Podfile`:
381
381
382
382
```
383
-
pod 'ReactiveSwift', '1.0.0-rc.3'
383
+
pod 'ReactiveSwift', '1.0.0'
384
384
```
385
385
386
386
#### Swift Package Manager
@@ -389,7 +389,7 @@ If you use Swift Package Manager, simply add ReactiveSwift as a dependency
@@ -419,20 +419,13 @@ We also provide a great Playground, so you can get used to ReactiveCocoa's opera
419
419
1. Build `ReactiveSwift-macOS` scheme
420
420
1. Finally open the `ReactiveSwift.playground`
421
421
1. Choose `View > Show Debug Area`
422
-
422
+
423
423
## Have a question?
424
424
If you need any help, please visit our [GitHub issues][] or [Stack Overflow][]. Feel free to file an issue if you do not manage to find any solution from the archives.
Copy file name to clipboardExpand all lines: ReactiveSwift.podspec
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
Pod::Spec.newdo |s|
2
2
s.name="ReactiveSwift"
3
3
# Version goes here and will be used to access the git tag later on, once we have a first release.
4
-
s.version="1.0.0-rc.3"
4
+
s.version="1.0.0"
5
5
s.summary="Streams of values over time"
6
6
s.description=<<-DESC
7
7
ReactiveSwift is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values over time.
0 commit comments