Skip to content

Commit

Permalink
Bump deployment target to iOS 12
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Mar 13, 2024
1 parent c7210c7 commit 46667a7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ACKReactiveExtensions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Pod::Spec.new do |s|
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ackee' => '[email protected]' }
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'
Expand Down
4 changes: 2 additions & 2 deletions ACKReactiveExtensions.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
let package = Package(
name: "ACKReactiveExtensions",
platforms: [
.iOS(.v11)
.iOS(.v12),
],
products: [
.library(name: "ACKReactiveExtensionsCore", targets: ["ACKReactiveExtensionsCore"]),
Expand Down

0 comments on commit 46667a7

Please sign in to comment.