Skip to content

Commit

Permalink
Merge pull request #443 from zapcannon87/master
Browse files Browse the repository at this point in the history
release: 17.11.0
  • Loading branch information
zapcannon87 authored Jul 4, 2023
2 parents 9135590 + 602afd3 commit 15956e3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions LeanCloud.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Pod::Spec.new do |s|

s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '4.0'

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

s.subspec 'RTM' do |ss|
ss.dependency 'SwiftProtobuf', '~> 1.22'
ss.dependency 'GRDB.swift', '~> 5.26'
ss.dependency 'GRDB.swift', '~> 6.15.0'

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

Expand Down
10 changes: 5 additions & 5 deletions LeanCloud.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -967,8 +967,8 @@
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos appletvsimulator watchos watchsimulator";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
TVOS_DEPLOYMENT_TARGET = 11.0;
WATCHOS_DEPLOYMENT_TARGET = 4.0;
};
name = Debug;
};
Expand Down Expand Up @@ -1002,8 +1002,8 @@
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos appletvsimulator watchos watchsimulator";
SWIFT_VERSION = 5.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
TVOS_DEPLOYMENT_TARGET = 11.0;
WATCHOS_DEPLOYMENT_TARGET = 4.0;
};
name = Release;
};
Expand Down Expand Up @@ -1225,7 +1225,7 @@
repositoryURL = "https://github.com/groue/GRDB.swift";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 5.26.0;
minimumVersion = 6.15.0;
};
};
D35EB5BB2328A6E000763E4E /* XCRemoteSwiftPackageReference "Alamofire" */ = {
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ let package = Package(
platforms: [
.iOS(.v11),
.macOS(.v10_13),
.tvOS(.v10),
.watchOS(.v3)
.tvOS(.v11),
.watchOS(.v4)
],
products: [
.library(name: "LeanCloud", targets: ["LeanCloud"]),
],
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.7.0")),
.package(url: "https://github.com/apple/swift-protobuf.git", .upToNextMajor(from: "1.22.0")),
.package(url: "https://github.com/groue/GRDB.swift.git", .upToNextMajor(from: "5.26.0"))
.package(url: "https://github.com/groue/GRDB.swift.git", .upToNextMajor(from: "6.15.0"))
],
targets: [
.target(
Expand Down

0 comments on commit 15956e3

Please sign in to comment.