Skip to content

Commit df79a7c

Browse files
committed
RxDataSources 5.0.0
1 parent 9afb331 commit df79a7c

15 files changed

+150
-100
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveX/RxSwift" ~> 5.0
1+
github "ReactiveX/RxSwift" ~> 6.0

Cartfile.resolved

Lines changed: 0 additions & 1 deletion
This file was deleted.

Carthage/Checkouts/RxSwift

Submodule RxSwift deleted from 885637e

Differentiator.podspec

Lines changed: 3 additions & 3 deletions
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 = "4.0.1"
3+
s.version = "5.0.0"
44
s.summary = "Diff algorithm for UITableView and UICollectionView."
55
s.description = <<-DESC
66
Diff algorithm for UITableView and UICollectionView.
@@ -12,12 +12,12 @@ Pod::Spec.new do |s|
1212
s.author = { "Krunoslav Zaher" => "[email protected]" }
1313
s.source = { :git => "https://github.com/RxSwiftCommunity/RxDataSources.git", :tag => s.version.to_s }
1414

15-
s.requires_arc = true
15+
s.requires_arc = true
1616
s.swift_version = '5.0'
1717

1818
s.source_files = 'Sources/Differentiator/**/*.swift'
1919

20-
s.ios.deployment_target = '8.0'
20+
s.ios.deployment_target = '9.0'
2121
s.tvos.deployment_target = '9.0'
2222

2323
end

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import PackageDescription
55
let package = Package(
66
name: "RxDataSources",
77
platforms: [
8-
.iOS(.v8), .tvOS(.v9)
8+
.iOS(.v9), .tvOS(.v9)
99
],
1010
products: [
1111
.library(name: "RxDataSources", targets: ["RxDataSources"]),
1212
.library(name: "Differentiator", targets: ["Differentiator"])
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0"))
15+
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0"))
1616
],
1717
targets: [
1818
.target(name: "RxDataSources", dependencies: ["Differentiator", "RxSwift", "RxCocoa"]),

RxDataSources.podspec

Lines changed: 5 additions & 5 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 = "4.0.1"
3+
s.version = "5.0.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.
@@ -37,11 +37,11 @@ data
3737
s.swift_version = '5.0'
3838

3939
s.source_files = 'Sources/RxDataSources/**/*.swift'
40-
s.dependency 'Differentiator', '~> 4.0'
41-
s.dependency 'RxSwift', '~> 5.0'
42-
s.dependency 'RxCocoa', '~> 5.0'
40+
s.dependency 'Differentiator', '~> 5.0'
41+
s.dependency 'RxSwift', '~> 6.0'
42+
s.dependency 'RxCocoa', '~> 6.0'
4343

44-
s.ios.deployment_target = '8.0'
44+
s.ios.deployment_target = '9.0'
4545
s.tvos.deployment_target = '9.0'
4646

4747
end

0 commit comments

Comments
 (0)