Skip to content

Commit def100e

Browse files
committed
Update docs and set version to 1.0.9
1 parent 49aae57 commit def100e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Actually, because it's only natural to bind text to a label, as simple as:
5252
name.bindTo(nameLabel)
5353
```
5454

55-
> Method `bindTo` internally uses `observe` so it will update the target object on the main thread (queue) by default. That means that you can update the observable from a background thread without worrying how your UI will be updated - it will always happen on the main thread. You can change default behaviour by passing another exection context to the `bindTo` method.
55+
> Observables provided by ReactiveUIKit will update the target object on the main thread (queue) by default. That means that you can update the observable from a background thread without worrying how your UI will be updated - it will always happen on the main thread. You can change default behaviour by passing another exection context to the `bindTo` method.
5656
5757

5858
## Observable Collections
@@ -235,7 +235,7 @@ fetchImage(url: ...).bindNextTo(imageView)
235235
Whenever the observer is registered, the operation starts all over again. To share results of a single operation run, use `shareNext` method.
236236

237237
```swift
238-
let image = fetchImage(url: ...).shareNext
238+
let image = fetchImage(url: ...).shareNext()
239239
image.bindTo(imageView1)
240240
image.bindTo(imageView2)
241241
```
@@ -363,7 +363,7 @@ public enum OperationEvent<Value, Error: ErrorType> {
363363

364364
ReactiveKit uses simple concept of execution contexts inspired by [BrightFutures](https://github.com/Thomvis/BrightFutures) to handle threading.
365365

366-
When you want to receive events on the same thread on which they were generated, just pass `ImmediateExecutionContext`. When you want to receive them on a specific dispatch queue, just use `context` extension of dispatch queue wrapper type `Queue`, for example: `Queue.main.context`.
366+
When you want to receive events on the same thread on which they were generated, just pass `nil` for the execution context parameter. When you want to receive them on a specific dispatch queue, just use `context` extension of dispatch queue wrapper type `Queue`, for example: `Queue.main.context`.
367367

368368
## Why another FRP framework?
369369

ReactiveKit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = "ReactiveKit"
3-
s.version = "1.0.8"
3+
s.version = "1.0.9"
44
s.summary = "A Swift Reactive Programming Framework"
55
s.description = "ReactiveKit is a collection of Swift frameworks for reactive and functional reactive programming."
66
s.homepage = "https://github.com/ReactiveKit/ReactiveKit"
77
s.license = 'MIT'
88
s.author = { "Srdan Rasic" => "[email protected]" }
9-
s.source = { :git => "https://github.com/ReactiveKit/ReactiveKit.git", :tag => "v1.0.8" }
9+
s.source = { :git => "https://github.com/ReactiveKit/ReactiveKit.git", :tag => "v1.0.9" }
1010

1111
s.ios.deployment_target = '8.0'
1212
s.osx.deployment_target = '10.9'

ReactiveKit/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.7</string>
18+
<string>1.0.9</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)