From be9a759db2ed193c01ee16632e3876784de66480 Mon Sep 17 00:00:00 2001 From: Marin Todorov Date: Fri, 20 Oct 2017 11:19:28 +0200 Subject: [PATCH] wrap up swift4 updates --- Example/Podfile | 8 ++++---- RxRealmDataSources.podspec | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Example/Podfile b/Example/Podfile index 6c684e0..3cd5486 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,10 +1,10 @@ use_frameworks! abstract_target 'Demo' do - pod 'RealmSwift', '3.0.0-beta.4' - pod 'RxSwift', '4.0.0-beta.0' - pod 'RxCocoa', '4.0.0-beta.0' - pod 'RxRealm', '0.7.1' + pod 'RealmSwift', '~> 3.0' + pod 'RxSwift', '~> 4.0' + pod 'RxCocoa', '~> 4.0' + pod 'RxRealm', '~> 0.7.3' pod 'RxRealmDataSources', :path => '../' target 'RxRealmDataSources_Example' do diff --git a/RxRealmDataSources.podspec b/RxRealmDataSources.podspec index 11c1d4c..02826af 100644 --- a/RxRealmDataSources.podspec +++ b/RxRealmDataSources.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'RxRealmDataSources' - s.version = '0.2.8' + s.version = '0.2.9' s.summary = 'Rx data sources for RxRealm`s observable types' s.description = <<-DESC @@ -23,8 +23,8 @@ Pod::Spec.new do |s| s.frameworks = 'Foundation' - s.dependency 'RealmSwift', '3.0.0-beta.4' - s.dependency 'RxSwift', '4.0.0-beta.0' - s.dependency 'RxCocoa', '4.0.0-beta.0' - s.dependency 'RxRealm', '0.7.1' + s.dependency 'RealmSwift', '~> 3.0' + s.dependency 'RxSwift', '~> 4.0' + s.dependency 'RxCocoa', '~> 4.0' + s.dependency 'RxRealm', '~> 0.7.3' end