Skip to content

Commit bc00852

Browse files
committed
3.0.0-rc.0
1 parent d91e4bf commit bc00852

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
---
55

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+
611
## [2.0.2](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/2.0.2)
712

813
* Adds Swift Package Manager support

Differentiator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Differentiator"
3-
s.version = "3.0.0-beta.1"
3+
s.version = "3.0.0-rc.0"
44
s.summary = "Diff algorithm for UITableView and UICollectionView."
55
s.description = <<-DESC
66
Diff algorithm for UITableView and UICollectionView.

RxDataSources.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxDataSources"
3-
s.version = "3.0.0-beta.1"
3+
s.version = "3.0.0-rc.0"
44
s.summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
55
s.description = <<-DESC
66
This is a collection of reactive data sources for UITableView and UICollectionView.
@@ -36,9 +36,9 @@ data
3636
s.requires_arc = true
3737

3838
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'
4242

4343
s.ios.deployment_target = '8.0'
4444
s.tvos.deployment_target = '9.0'

RxDataSources.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@
14941494
PRODUCT_BUNDLE_IDENTIFIER = kzaher.RxDataSources;
14951495
PRODUCT_NAME = RxDataSources;
14961496
SKIP_INSTALL = YES;
1497-
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator watchos watchsimulator";
1497+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator";
14981498
};
14991499
name = Debug;
15001500
};
@@ -1517,7 +1517,7 @@
15171517
PRODUCT_BUNDLE_IDENTIFIER = kzaher.RxDataSources;
15181518
PRODUCT_NAME = RxDataSources;
15191519
SKIP_INSTALL = YES;
1520-
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator watchos watchsimulator";
1520+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator";
15211521
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
15221522
};
15231523
name = Release;

Sources/RxDataSources/Deprecated.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
extension CollectionViewSectionedDataSource {
1010
@available(*, deprecated, renamed: "configureSupplementaryView")
11-
open var supplementaryViewFactory: ConfigureSupplementaryView {
11+
public var supplementaryViewFactory: ConfigureSupplementaryView {
1212
get {
1313
return self.configureSupplementaryView
1414
}

0 commit comments

Comments
 (0)