Skip to content

Commit 15956e3

Browse files
authored
Merge pull request #443 from zapcannon87/master
release: 17.11.0
2 parents 9135590 + 602afd3 commit 15956e3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

LeanCloud.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Pod::Spec.new do |s|
1212

1313
s.ios.deployment_target = '11.0'
1414
s.osx.deployment_target = '10.13'
15-
s.tvos.deployment_target = '10.0'
16-
s.watchos.deployment_target = '3.0'
15+
s.tvos.deployment_target = '11.0'
16+
s.watchos.deployment_target = '4.0'
1717

1818
s.subspec 'Foundation' do |ss|
1919
ss.dependency 'Alamofire', '~> 5.7'
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323

2424
s.subspec 'RTM' do |ss|
2525
ss.dependency 'SwiftProtobuf', '~> 1.22'
26-
ss.dependency 'GRDB.swift', '~> 5.26'
26+
ss.dependency 'GRDB.swift', '~> 6.15.0'
2727

2828
ss.dependency 'LeanCloud/Foundation', "#{s.version}"
2929

LeanCloud.xcodeproj/project.pbxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -967,8 +967,8 @@
967967
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos appletvsimulator watchos watchsimulator";
968968
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
969969
SWIFT_VERSION = 5.0;
970-
TVOS_DEPLOYMENT_TARGET = 10.0;
971-
WATCHOS_DEPLOYMENT_TARGET = 3.0;
970+
TVOS_DEPLOYMENT_TARGET = 11.0;
971+
WATCHOS_DEPLOYMENT_TARGET = 4.0;
972972
};
973973
name = Debug;
974974
};
@@ -1002,8 +1002,8 @@
10021002
SKIP_INSTALL = YES;
10031003
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos appletvsimulator watchos watchsimulator";
10041004
SWIFT_VERSION = 5.0;
1005-
TVOS_DEPLOYMENT_TARGET = 10.0;
1006-
WATCHOS_DEPLOYMENT_TARGET = 3.0;
1005+
TVOS_DEPLOYMENT_TARGET = 11.0;
1006+
WATCHOS_DEPLOYMENT_TARGET = 4.0;
10071007
};
10081008
name = Release;
10091009
};
@@ -1225,7 +1225,7 @@
12251225
repositoryURL = "https://github.com/groue/GRDB.swift";
12261226
requirement = {
12271227
kind = upToNextMajorVersion;
1228-
minimumVersion = 5.26.0;
1228+
minimumVersion = 6.15.0;
12291229
};
12301230
};
12311231
D35EB5BB2328A6E000763E4E /* XCRemoteSwiftPackageReference "Alamofire" */ = {

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ let package = Package(
88
platforms: [
99
.iOS(.v11),
1010
.macOS(.v10_13),
11-
.tvOS(.v10),
12-
.watchOS(.v3)
11+
.tvOS(.v11),
12+
.watchOS(.v4)
1313
],
1414
products: [
1515
.library(name: "LeanCloud", targets: ["LeanCloud"]),
1616
],
1717
dependencies: [
1818
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.7.0")),
1919
.package(url: "https://github.com/apple/swift-protobuf.git", .upToNextMajor(from: "1.22.0")),
20-
.package(url: "https://github.com/groue/GRDB.swift.git", .upToNextMajor(from: "5.26.0"))
20+
.package(url: "https://github.com/groue/GRDB.swift.git", .upToNextMajor(from: "6.15.0"))
2121
],
2222
targets: [
2323
.target(

0 commit comments

Comments
 (0)