Skip to content

Commit

Permalink
3.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Oct 8, 2017
1 parent d91e4bf commit bc00852
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

---

## [3.0.0-rc.0](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/3.0.0-rc.0)

* Cleans up public interface to use initializers vs nillable properties and deprecates nillable properties in favor of passing parameters
through init.

## [2.0.2](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/2.0.2)

* Adds Swift Package Manager support
Expand Down
2 changes: 1 addition & 1 deletion Differentiator.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Differentiator"
s.version = "3.0.0-beta.1"
s.version = "3.0.0-rc.0"
s.summary = "Diff algorithm for UITableView and UICollectionView."
s.description = <<-DESC
Diff algorithm for UITableView and UICollectionView.
Expand Down
8 changes: 4 additions & 4 deletions RxDataSources.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxDataSources"
s.version = "3.0.0-beta.1"
s.version = "3.0.0-rc.0"
s.summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
s.description = <<-DESC
This is a collection of reactive data sources for UITableView and UICollectionView.
Expand Down Expand Up @@ -36,9 +36,9 @@ data
s.requires_arc = true

s.source_files = 'Sources/RxDataSources/**/*.swift'
s.dependency 'Differentiator', '~> 3.0.0-beta.1'
s.dependency 'RxSwift', '~> 4.0.0-beta.1'
s.dependency 'RxCocoa', '~> 4.0.0-beta.1'
s.dependency 'Differentiator', '~> 3.0.0-rc.0'
s.dependency 'RxSwift', '~> 4.0.0-rc.0'
s.dependency 'RxCocoa', '~> 4.0.0-rc.0'

s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
Expand Down
4 changes: 2 additions & 2 deletions RxDataSources.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1494,7 +1494,7 @@
PRODUCT_BUNDLE_IDENTIFIER = kzaher.RxDataSources;
PRODUCT_NAME = RxDataSources;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator watchos watchsimulator";
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator";
};
name = Debug;
};
Expand All @@ -1517,7 +1517,7 @@
PRODUCT_BUNDLE_IDENTIFIER = kzaher.RxDataSources;
PRODUCT_NAME = RxDataSources;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator watchos watchsimulator";
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos appletvos appletvsimulator";
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion Sources/RxDataSources/Deprecated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

extension CollectionViewSectionedDataSource {
@available(*, deprecated, renamed: "configureSupplementaryView")
open var supplementaryViewFactory: ConfigureSupplementaryView {
public var supplementaryViewFactory: ConfigureSupplementaryView {
get {
return self.configureSupplementaryView
}
Expand Down

0 comments on commit bc00852

Please sign in to comment.