diff --git a/ACKReactiveExtensions.podspec b/ACKReactiveExtensions.podspec index 12da05d..4bf45bb 100644 --- a/ACKReactiveExtensions.podspec +++ b/ACKReactiveExtensions.podspec @@ -9,11 +9,11 @@ Pod::Spec.new do |s| s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Ackee' => 'info@ackee.cz' } s.source = { :git => 'https://github.com/AckeeCZ/ACKReactiveExtensions.git', :tag => s.version.to_s } - s.ios.deployment_target = '11.0' + s.ios.deployment_target = '12.0' s.swift_version = '5.0' s.default_subspec = 'Core','UIKit' s.dependency 'ReactiveCocoa', '~> 12.0' - s.dependency 'ReactiveSwift', '~> 7.0.0' # ReactiveCocoa has deployment target iOS 9, ReactiveSwift 7.1 has iOS 10, sorry for now + s.dependency 'ReactiveSwift', '~> 7.0' s.subspec 'Core' do |core| core.source_files = 'ACKReactiveExtensions/Core/*.swift' diff --git a/ACKReactiveExtensions.xcodeproj/project.pbxproj b/ACKReactiveExtensions.xcodeproj/project.pbxproj index c6e08bb..1648a8d 100644 --- a/ACKReactiveExtensions.xcodeproj/project.pbxproj +++ b/ACKReactiveExtensions.xcodeproj/project.pbxproj @@ -734,7 +734,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; MARKETING_VERSION = 6.1.0; ONLY_ACTIVE_ARCH = YES; SWIFT_VERSION = 5.0; @@ -771,7 +771,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; MARKETING_VERSION = 6.1.0; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_VERSION = 5.0; diff --git a/CHANGELOG.md b/CHANGELOG.md index c2bc433..10d867a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ ## master +- use Xcode 15.2 on CI ➡️ bump deployment target to iOS 12 (#61, kudos to @olejnjak) + # 6.2.0 - deprecate (more like remove) Realm and Marshal extensions from dependency managers distribution (#60, kudos to @olejnjak) diff --git a/Package.swift b/Package.swift index 153d5f8..68106b4 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,7 @@ import PackageDescription let package = Package( name: "ACKReactiveExtensions", platforms: [ - .iOS(.v11) + .iOS(.v12), ], products: [ .library(name: "ACKReactiveExtensionsCore", targets: ["ACKReactiveExtensionsCore"]),