Skip to content

Commit cf190cf

Browse files
committed
add annotation for tvOS
1 parent c3b2f6a commit cf190cf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Sources/Template.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ final public class Template {
9595
/// - parameter encoding: The encoding of the template resource.
9696
/// - parameter configuration: The configuration for rendering. If the configuration is not specified, `Configuration.default` is used.
9797
/// - throws: MustacheError
98-
@available(iOS 15.0, macOS 12.0, *)
98+
@available(iOS 15.0, macOS 12.0, tvOS 15.0, *)
9999
public convenience init(URL: Foundation.URL, encoding: String.Encoding = .utf8, configuration: Configuration = .default) async throws {
100100
let baseURL = URL.deletingLastPathComponent()
101101
let templateExtension = URL.pathExtension

Sources/TemplateRepository.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public protocol TemplateRepositoryDataSource {
8282
/// - parameter templateID: The template ID of the template.
8383
/// - throws: MustacheError
8484
/// - returns: A Mustache template string.
85-
@available(iOS 15.0, macOS 12.0, *)
85+
@available(iOS 15.0, macOS 12.0, tvOS 15.0, *)
8686
func templateStringForTemplateID(_ templaetID: TemplateID) async throws -> String
8787
}
8888

@@ -353,7 +353,7 @@ final public class TemplateRepository {
353353
}
354354
}
355355

356-
@available(iOS 15.0, macOS 12.0, *)
356+
@available(iOS 15.0, macOS 12.0, tvOS 15.0, *)
357357
func templateAST(named name: String, relativeToTemplateID baseTemplateID: TemplateID? = nil) async throws -> TemplateAST {
358358
guard let dataSource = self.dataSource else {
359359
throw MustacheError(kind: .templateNotFound, message: "Missing dataSource", templateID: baseTemplateID)
@@ -510,7 +510,7 @@ final public class TemplateRepository {
510510
return try NSString(contentsOf: URL(string: templateID)!, encoding: encoding.rawValue) as String
511511
}
512512

513-
@available(iOS 15.0, macOS 12.0, *)
513+
@available(iOS 15.0, macOS 12.0, tvOS 15.0, *)
514514
func templateStringForTemplateID(_ templateID: TemplateID) async throws -> String {
515515
let (data, _) = try await URLSession.shared.data(from: URL(string: templateID)!)
516516

Tests/Public/TemplateTests/TemplateFromMethodsTests/TemplateFromMethodsTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class TemplateFromMethodsTests: XCTestCase {
275275
}
276276
}
277277

278-
@available(iOS 15.0, macOS 12.0, *)
278+
@available(iOS 15.0, macOS 12.0, tvOS 15.0, *)
279279
extension TemplateFromMethodsTests {
280280
func testTemplateFromURL() async {
281281
let template = try! await Template(URL: templateURL)

0 commit comments

Comments
 (0)