Skip to content

Commit

Permalink
RxDataSources 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed Jan 2, 2021
1 parent 9afb331 commit df79a7c
Show file tree
Hide file tree
Showing 15 changed files with 150 additions and 100 deletions.
2 changes: 1 addition & 1 deletion Cartfile
@@ -1 +1 @@
github "ReactiveX/RxSwift" ~> 5.0
github "ReactiveX/RxSwift" ~> 6.0
1 change: 0 additions & 1 deletion Cartfile.resolved

This file was deleted.

1 change: 0 additions & 1 deletion Carthage/Checkouts/RxSwift
Submodule RxSwift deleted from 885637
6 changes: 3 additions & 3 deletions Differentiator.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Differentiator"
s.version = "4.0.1"
s.version = "5.0.0"
s.summary = "Diff algorithm for UITableView and UICollectionView."
s.description = <<-DESC
Diff algorithm for UITableView and UICollectionView.
Expand All @@ -12,12 +12,12 @@ Pod::Spec.new do |s|
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxDataSources.git", :tag => s.version.to_s }

s.requires_arc = true
s.requires_arc = true
s.swift_version = '5.0'

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

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

end
4 changes: 2 additions & 2 deletions Package.swift
Expand Up @@ -5,14 +5,14 @@ import PackageDescription
let package = Package(
name: "RxDataSources",
platforms: [
.iOS(.v8), .tvOS(.v9)
.iOS(.v9), .tvOS(.v9)
],
products: [
.library(name: "RxDataSources", targets: ["RxDataSources"]),
.library(name: "Differentiator", targets: ["Differentiator"])
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0"))
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0"))
],
targets: [
.target(name: "RxDataSources", dependencies: ["Differentiator", "RxSwift", "RxCocoa"]),
Expand Down
10 changes: 5 additions & 5 deletions RxDataSources.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxDataSources"
s.version = "4.0.1"
s.version = "5.0.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 @@ -37,11 +37,11 @@ data
s.swift_version = '5.0'

s.source_files = 'Sources/RxDataSources/**/*.swift'
s.dependency 'Differentiator', '~> 4.0'
s.dependency 'RxSwift', '~> 5.0'
s.dependency 'RxCocoa', '~> 5.0'
s.dependency 'Differentiator', '~> 5.0'
s.dependency 'RxSwift', '~> 6.0'
s.dependency 'RxCocoa', '~> 6.0'

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

end

0 comments on commit df79a7c

Please sign in to comment.