Skip to content

Commit 9be22ce

Browse files
authored
Merge pull request #8 from OhKanghoon/master
Update Dependency
2 parents 1dba4f9 + dfdbc26 commit 9be22ce

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
env:
1313
WORKSPACE: HLSCachingReverseProxyServer.xcworkspace
1414
SCHEME: HLSCachingReverseProxyServer-Package
15-
SDK: iphonesimulator13.1
16-
DESTINATION: platform=iOS Simulator,name=iPhone 11 Pro,OS=13.1
15+
SDK: iphonesimulator
16+
DESTINATION: platform=iOS Simulator,name=iPhone 11 Pro,OS=latest
1717

1818
steps:
1919
- uses: actions/checkout@v1

HLSCachingReverseProxyServer.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
s.swift_version = "5.1"
1313

1414
s.dependency "GCDWebServer", "~> 3.5"
15-
s.dependency "PINCache", ">= 3.0.1-beta.3"
15+
s.dependency "PINCache", "~> 3.0"
1616

1717
s.ios.deployment_target = "8.0"
1818
s.osx.deployment_target = "10.11"

Package.resolved

Lines changed: 2 additions & 2 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,13 +5,13 @@ import PackageDescription
55
let package = Package(
66
name: "HLSCachingReverseProxyServer",
77
platforms: [
8-
.macOS(.v10_11), .iOS(.v8), .tvOS(.v9)
8+
.macOS(.v10_11), .iOS(.v9), .tvOS(.v9)
99
],
1010
products: [
1111
.library(name: "HLSCachingReverseProxyServer", targets: ["HLSCachingReverseProxyServer"]),
1212
],
1313
dependencies: [
14-
.package(url: "https://github.com/Quick/Nimble.git", .revision("50c3f82c3d23af1d6e710226015b3e94b5265f71")),
14+
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0")),
1515
.package(url: "https://github.com/devxoul/SafeCollection.git", .upToNextMajor(from: "3.1.0")),
1616
],
1717
targets: [

Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ use_frameworks!
22
inhibit_all_warnings!
33

44
target 'HLSCachingReverseProxyServer' do
5-
platform :ios, '8.0'
5+
platform :ios, '9.0'
66

77
pod 'GCDWebServer', '~> 3.5'
8-
pod 'PINCache', '>= 3.0.1-beta.3'
8+
pod 'PINCache', '~> 3.0'
99

1010
target 'HLSCachingReverseProxyServerTests' do
1111
end

Podfile.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ PODS:
22
- GCDWebServer (3.5.3):
33
- GCDWebServer/Core (= 3.5.3)
44
- GCDWebServer/Core (3.5.3)
5-
- PINCache (3.0.1-beta.8):
6-
- PINCache/Arc-exception-safe (= 3.0.1-beta.8)
7-
- PINCache/Core (= 3.0.1-beta.8)
8-
- PINCache/Arc-exception-safe (3.0.1-beta.8):
5+
- PINCache (3.0.3):
6+
- PINCache/Arc-exception-safe (= 3.0.3)
7+
- PINCache/Core (= 3.0.3)
8+
- PINCache/Arc-exception-safe (3.0.3):
99
- PINCache/Core
10-
- PINCache/Core (3.0.1-beta.8):
11-
- PINOperation (~> 1.1.1)
12-
- PINOperation (1.1.2)
10+
- PINCache/Core (3.0.3):
11+
- PINOperation (~> 1.2.1)
12+
- PINOperation (1.2.1)
1313

1414
DEPENDENCIES:
1515
- GCDWebServer (~> 3.5)
16-
- PINCache (>= 3.0.1-beta.3)
16+
- PINCache (~> 3.0)
1717

1818
SPEC REPOS:
1919
trunk:
@@ -23,9 +23,9 @@ SPEC REPOS:
2323

2424
SPEC CHECKSUMS:
2525
GCDWebServer: c0ab22c73e1b84f358d1e2f74bf6afd1c60829f2
26-
PINCache: 534fd41d358d828dfdf227a0d327f3673a65e20b
27-
PINOperation: 24b774353ca248fcf87d67b2d61eef42087c125a
26+
PINCache: 7a8fc1a691173d21dbddbf86cd515de6efa55086
27+
PINOperation: 00c935935f1e8cf0d1e2d6b542e75b88fc3e5e20
2828

29-
PODFILE CHECKSUM: eccdba0298d185d28e91ef914560e6ab6cbd4b13
29+
PODFILE CHECKSUM: 396a8d24399c0a48e03b0b0819f1e2337c395211
3030

31-
COCOAPODS: 1.8.3
31+
COCOAPODS: 1.10.0

0 commit comments

Comments
 (0)