Skip to content

Commit 4dcae40

Browse files
authored
Merge pull request #147 from ikesyo/bump-minimum-ios-version
Bump minimum iOS version to 9.0 to sync with realm-cocoa
2 parents c4dcc49 + 0b3b542 commit 4dcae40

7 files changed

+21
-16
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
3.1.0
5+
_____
6+
7+
- Bump minimum iOS version to 9.0 to sync with realm-cocoa
8+
49
3.0.0
510
_____
611

Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "realm/realm-cocoa" ~> 5.0
1+
github "realm/realm-cocoa" ~> 5.2
22
github "ReactiveX/RxSwift" ~> 5.0

Cartfile.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "ReactiveX/RxSwift" "5.1.1"
2-
github "realm/realm-cocoa" "v5.0.0"
2+
github "realm/realm-cocoa" "v5.2.0"

Package.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
"repositoryURL": "https://github.com/realm/realm-cocoa.git",
77
"state": {
88
"branch": null,
9-
"revision": "91dc97e014134ecddef28d2bab7c74648e8937f3",
10-
"version": "5.0.0"
9+
"revision": "3857a5e1325d1f16667ea03ce828a9855c412882",
10+
"version": "5.2.0"
1111
}
1212
},
1313
{
1414
"package": "RealmCore",
1515
"repositoryURL": "https://github.com/realm/realm-core",
1616
"state": {
1717
"branch": null,
18-
"revision": "3735ee940583f3d62f73076034505ff4e6207d91",
19-
"version": "6.0.4"
18+
"revision": "8f7b9327111f974ea4961b8641af103fd4f6755a",
19+
"version": "6.0.8"
2020
}
2121
},
2222
{

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let package = Package(
1414
],
1515
dependencies: [
1616
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
17-
.package(url: "https://github.com/realm/realm-cocoa.git", .upToNextMajor(from: "5.0.0"))
17+
.package(url: "https://github.com/realm/realm-cocoa.git", .upToNextMajor(from: "5.2.0"))
1818
],
1919
targets: [
2020
.target(

RxRealm.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "RxRealm"
4-
s.version = "3.0.1"
4+
s.version = "3.1.0"
55
s.summary = "An Rx wrapper of Realm's notifications and write bindings"
66
s.swift_version = "5.0"
77

@@ -17,15 +17,15 @@ Pod::Spec.new do |s|
1717

1818
s.requires_arc = true
1919

20-
s.ios.deployment_target = '8.0'
20+
s.ios.deployment_target = '9.0'
2121
s.osx.deployment_target = '10.10'
2222
s.tvos.deployment_target = '9.0'
2323
s.watchos.deployment_target = '3.0'
2424

2525
s.source_files = 'Pod/Classes/*.swift'
2626

2727
s.frameworks = 'Foundation'
28-
s.dependency 'RealmSwift', '~> 5.0'
28+
s.dependency 'RealmSwift', '~> 5.2'
2929
s.dependency 'RxSwift', '~> 5.0'
3030

3131
end

RxRealm.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@
503503
);
504504
INFOPLIST_FILE = "RxRealm-iOS-Info.plist";
505505
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
506-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
506+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
507507
LD_RUNPATH_SEARCH_PATHS = (
508508
"$(inherited)",
509509
"@executable_path/Frameworks",
@@ -531,7 +531,7 @@
531531
);
532532
INFOPLIST_FILE = "RxRealm-iOS-Info.plist";
533533
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
534-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
534+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
535535
LD_RUNPATH_SEARCH_PATHS = (
536536
"$(inherited)",
537537
"@executable_path/Frameworks",
@@ -622,7 +622,7 @@
622622
);
623623
INFOPLIST_FILE = "RxRealm-tvOS-Info.plist";
624624
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
625-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
625+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
626626
LD_RUNPATH_SEARCH_PATHS = (
627627
"$(inherited)",
628628
"@executable_path/Frameworks",
@@ -654,7 +654,7 @@
654654
);
655655
INFOPLIST_FILE = "RxRealm-tvOS-Info.plist";
656656
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
657-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
657+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
658658
LD_RUNPATH_SEARCH_PATHS = (
659659
"$(inherited)",
660660
"@executable_path/Frameworks",
@@ -686,7 +686,7 @@
686686
);
687687
INFOPLIST_FILE = "RxRealm-watchOS-Info.plist";
688688
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
689-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
689+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
690690
LD_RUNPATH_SEARCH_PATHS = (
691691
"$(inherited)",
692692
"@executable_path/Frameworks",
@@ -718,7 +718,7 @@
718718
);
719719
INFOPLIST_FILE = "RxRealm-watchOS-Info.plist";
720720
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
721-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
721+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
722722
LD_RUNPATH_SEARCH_PATHS = (
723723
"$(inherited)",
724724
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)