Skip to content

Commit 553435e

Browse files
committed
Bump version to 0.2.0
1 parent faf40b6 commit 553435e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/VideoInfo.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ public struct VideoInfo {
1616

1717
public var highestQualityPlayableLink: String? {
1818
let urls = rawInfo.compactMap { $0["url"] }
19-
return firstPLayable(from: urls)
19+
return firstPlayable(from: urls)
2020
}
2121

2222
public var lowestQualityPlayableLink: String? {
2323
let urls = rawInfo.reversed().compactMap { $0["url"] }
24-
return firstPLayable(from: urls)
24+
return firstPlayable(from: urls)
2525
}
2626

27-
private func firstPLayable(from urls: [String]) -> String? {
27+
private func firstPlayable(from urls: [String]) -> String? {
2828
for urlString in urls {
2929
guard let url = URL(string: urlString) else {
3030
continue

YoutubeDirectLinkExtractor.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "YoutubeDirectLinkExtractor"
3-
s.version = "0.1.1"
3+
s.version = "0.2.0"
44
s.summary = "Get the direct link to a YouTube video for AVPlayer"
55
s.description = <<-DESC
66
YoutubeDirectLinkExtractor allows you to obtain the direct link to a YouTube video, which you can easily use with AVPlayer.

0 commit comments

Comments
 (0)