From 44956938066618b51b0b506f1ff6df4812d2f839 Mon Sep 17 00:00:00 2001 From: OhKanghoon Date: Mon, 22 Apr 2019 15:13:45 +0900 Subject: [PATCH] Release 1.1.0 --- Example/Podfile.lock | 4 ++-- README.md | 12 ++++++++---- RxDataSources-Texture.podspec | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 58a3a6a..109c436 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -24,7 +24,7 @@ PODS: - RxAtomic (4.4.1) - RxCocoa (4.4.1): - RxSwift (~> 4.0) - - RxDataSources-Texture (1.0.3): + - RxDataSources-Texture (1.1.0): - Differentiator (~> 3.0) - RxCocoa (~> 4.0) - RxSwift (~> 4.0) @@ -75,7 +75,7 @@ SPEC CHECKSUMS: RxAlamofire: 09624d0f2d48ed8b686e4eb4cf68e28cbd2df556 RxAtomic: f8d6adc1ccb87a767811269e4875887bc74dbf19 RxCocoa: 2f35a76bf8887872e28a1914112395b11b8e0e64 - RxDataSources-Texture: 6be46e816da8d199cd66bb0f9e27c99fa41ad57f + RxDataSources-Texture: a3ea28c97dd22d82573b0204393af11880dc275d RxOptional: 80426a0ddbd092573e4c482d8cc13302078c4d5e RxSwift: 92fcf68dfef21f3e2ab1965363d9e7b3d787597e Texture: 9d7e38965cf22ccd7cd9c249dd78b3f14e70ab6c diff --git a/README.md b/README.md index 51f6e83..6c7aca3 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,15 @@ - rx.items(dataSource:protocol) ```swift -let dataSource = RxASTableSectionedReloadDataSource>(configureCell: { (_, _, _, num) -> ASCellNode in - let cell = ASTextCellNode() - cell.text = "\(num)" - return cell +let dataSource = RxASTableSectionedReloadDataSource>( + configureCellBlock: { (_, _, _, num) in + return { + let cell = ASTextCellNode() + cell.text = "\(num)" + return cell + } }) + Observable.just([SectionModel(model: "title", items: [1, 2, 3])]) .bind(to: tableNode.rx.items(dataSource: dataSource)) .disposed(by: disposeBag) diff --git a/RxDataSources-Texture.podspec b/RxDataSources-Texture.podspec index 29da8c7..54aa993 100644 --- a/RxDataSources-Texture.podspec +++ b/RxDataSources-Texture.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'RxDataSources-Texture' - s.version = '1.0.3' + s.version = '1.1.0' s.summary = 'RxDataSources With Texture' s.description = <<-DESC This is a collection of reactive data sources for ASTableNode and ASCollectionNode