Skip to content

Commit 9325229

Browse files
committed
fix(#158) - Minimum deployment target version
1 parent d26329d commit 9325229

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "realm/realm-cocoa" ~> 10.2
1+
github "realm/realm-cocoa" ~> 10.5
22
github "ReactiveX/RxSwift" ~> 5.1

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "ReactiveX/RxSwift" "5.1.1"
2-
github "realm/realm-cocoa" "v10.2.0"
2+
github "realm/realm-cocoa" "v10.5.0"

Package.resolved

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55

66
let package = Package(name: "RxRealm",
77
platforms: [
8-
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v3)
8+
.macOS(.v10_10), .iOS(.v11), .tvOS(.v9), .watchOS(.v3)
99
],
1010
products: [
1111
// Products define the executables and libraries produced by a package, and make them visible to other packages.
@@ -15,7 +15,7 @@ let package = Package(name: "RxRealm",
1515

1616
dependencies: [
1717
// Dependencies declare other packages that this package depends on.
18-
.package(url: "https://github.com/realm/realm-cocoa.git", .upToNextMajor(from: "10.2.0")),
18+
.package(url: "https://github.com/realm/realm-cocoa.git", .upToNextMajor(from: "10.5.0")),
1919
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.1.0"))
2020
],
2121

RxRealm.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.source = { :git => "https://github.com/RxSwiftCommunity/RxRealm.git", :tag => "v" + ENV["RELEASE_VERSION"] }
1515
s.swift_version = "5.1"
1616

17-
s.ios.deployment_target = "9.0"
17+
s.ios.deployment_target = "11.0"
1818
s.osx.deployment_target = "10.10"
1919
s.tvos.deployment_target = "9.0"
2020
s.watchos.deployment_target = "3.0"
@@ -24,8 +24,8 @@ Pod::Spec.new do |s|
2424
s.source_files = "Sources/RxRealm/*.swift"
2525

2626
s.frameworks = "Foundation"
27-
s.dependency "Realm", "~> 10.2"
28-
s.dependency "RealmSwift", "~> 10.2"
27+
s.dependency "Realm", "~> 10.5"
28+
s.dependency "RealmSwift", "~> 10.5"
2929
s.dependency "RxSwift", "~> 5.1"
3030
s.dependency "RxCocoa", "~> 5.1"
3131
end

RxRealm.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@
787787
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
788788
GCC_WARN_UNUSED_FUNCTION = YES;
789789
GCC_WARN_UNUSED_VARIABLE = YES;
790-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
790+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
791791
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
792792
MTL_FAST_MATH = YES;
793793
ONLY_ACTIVE_ARCH = YES;
@@ -1016,7 +1016,7 @@
10161016
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10171017
GCC_WARN_UNUSED_FUNCTION = YES;
10181018
GCC_WARN_UNUSED_VARIABLE = YES;
1019-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1019+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
10201020
MTL_ENABLE_DEBUG_INFO = NO;
10211021
MTL_FAST_MATH = YES;
10221022
PRODUCT_NAME = "$(TARGET_NAME)";

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ options:
77
tabWidth: 2
88
xcodeVersion: "1220"
99
deploymentTarget:
10-
iOS: "9.0"
10+
iOS: "11.0"
1111
carthageExecutablePath: "`which carthage`"
1212
defaultConfig: "Release"
1313
configs:

0 commit comments

Comments
 (0)