From af7a438dc23296831b1e09effd009cae320cdce3 Mon Sep 17 00:00:00 2001 From: Igor Makarov Date: Thu, 21 Sep 2023 14:41:37 +0300 Subject: [PATCH] bump min versions for Xcode 14.3 --- Podfile | 2 +- RxReactiveObjC.podspec | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Podfile b/Podfile index 99b2183..01c9f05 100644 --- a/Podfile +++ b/Podfile @@ -12,7 +12,7 @@ abstract_target 'Common' do pod 'ReactiveObjC' pod 'RxReactiveObjC', path: './', testspecs: ['CoreTests'], inhibit_warnings: false target 'RxReactiveObjCSample' do - platform :ios, '9.0' + platform :ios, '11.0' pod 'SwiftLint' end end diff --git a/RxReactiveObjC.podspec b/RxReactiveObjC.podspec index 0b5a45e..74d387a 100644 --- a/RxReactiveObjC.podspec +++ b/RxReactiveObjC.podspec @@ -26,9 +26,9 @@ Pod::Spec.new do |s| s.platform = :ios, :osx, :watchos s.swift_versions = %w[5.0 5.1] - s.ios.deployment_target = '9.0' - s.watchos.deployment_target = '3.0' - s.osx.deployment_target = '10.10' + s.ios.deployment_target = '11.0' + s.watchos.deployment_target = '4.0' + s.osx.deployment_target = '10.13' s.subspec 'Core' do |sp| sp.source_files = 'Sources/Core/**/*.swift'