File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
3
3
4
4
---
5
5
6
+ ## [ 3.0.0-rc.0] ( https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/3.0.0-rc.0 )
7
+
8
+ * Cleans up public interface to use initializers vs nillable properties and deprecates nillable properties in favor of passing parameters
9
+ through init.
10
+
6
11
## [ 2.0.2] ( https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/2.0.2 )
7
12
8
13
* Adds Swift Package Manager support
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Differentiator"
3
- s . version = "3.0.0-beta.1 "
3
+ s . version = "3.0.0-rc.0 "
4
4
s . summary = "Diff algorithm for UITableView and UICollectionView."
5
5
s . description = <<-DESC
6
6
Diff algorithm for UITableView and UICollectionView.
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RxDataSources"
3
- s . version = "3.0.0-beta.1 "
3
+ s . version = "3.0.0-rc.0 "
4
4
s . summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
5
5
s . description = <<-DESC
6
6
This is a collection of reactive data sources for UITableView and UICollectionView.
36
36
s . requires_arc = true
37
37
38
38
s . source_files = 'Sources/RxDataSources/**/*.swift'
39
- s . dependency 'Differentiator' , '~> 3.0.0-beta.1 '
40
- s . dependency 'RxSwift' , '~> 4.0.0-beta.1 '
41
- s . dependency 'RxCocoa' , '~> 4.0.0-beta.1 '
39
+ s . dependency 'Differentiator' , '~> 3.0.0-rc.0 '
40
+ s . dependency 'RxSwift' , '~> 4.0.0-rc.0 '
41
+ s . dependency 'RxCocoa' , '~> 4.0.0-rc.0 '
42
42
43
43
s . ios . deployment_target = '8.0'
44
44
s . tvos . deployment_target = '9.0'
Original file line number Diff line number Diff line change 1494
1494
PRODUCT_BUNDLE_IDENTIFIER = kzaher.RxDataSources;
1495
1495
PRODUCT_NAME = RxDataSources;
1496
1496
SKIP_INSTALL = YES;
1497
- SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator watchos watchsimulator ";
1497
+ SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator";
1498
1498
};
1499
1499
name = Debug;
1500
1500
};
1517
1517
PRODUCT_BUNDLE_IDENTIFIER = kzaher.RxDataSources;
1518
1518
PRODUCT_NAME = RxDataSources;
1519
1519
SKIP_INSTALL = YES;
1520
- SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator watchos watchsimulator ";
1520
+ SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator";
1521
1521
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
1522
1522
};
1523
1523
name = Release;
Original file line number Diff line number Diff line change 8
8
9
9
extension CollectionViewSectionedDataSource {
10
10
@available ( * , deprecated, renamed: " configureSupplementaryView " )
11
- open var supplementaryViewFactory : ConfigureSupplementaryView {
11
+ public var supplementaryViewFactory : ConfigureSupplementaryView {
12
12
get {
13
13
return self . configureSupplementaryView
14
14
}
You can’t perform that action at this time.
0 commit comments