Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lm2343635 committed Apr 22, 2019
1 parent f4636f0 commit cfdf80b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@ viewModel.text <~> textFeild.rx.text ~ disposeBag
RxBinding supports using a single `disposeBag` for multiple binding operators like this:

```Swift
disposeBag
~ viewModel.text <~> textFeild.rx.text
~ viewModel.uppercaseText ~> label.rx.text
~ viewModel.charactersCount ~> [characterCountLabel1, characterCountLabel2].map { $0.rx.text }
disposeBag ~ [
viewModel.text <~> textFeild.rx.text,
viewModel.uppercaseText ~> label.rx.text,
viewModel.charactersCount ~> [characterCountLabel1, characterCountLabel2].map { $0.rx.text }
]
```
or this:

Expand Down
2 changes: 1 addition & 1 deletion RxBinding.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'RxBinding'
s.version = '0.2'
s.version = '0.3'
s.summary = 'Simple data binding operators for RxSwift.'

# This description is used to generate tags and improve search results.
Expand Down

0 comments on commit cfdf80b

Please sign in to comment.