Skip to content

Commit 5c4fa32

Browse files
committed
Fix availability
1 parent 671392f commit 5c4fa32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/FoundationEssentials/Data/Data.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2889,11 +2889,11 @@ extension Data {
28892889
public static let endLineWithLineFeed = Base64EncodingOptions(rawValue: 1 << 5)
28902890

28912891
/// Use the base64url alphabet to encode the data
2892-
@available(FoundationPreview 6.2, *)
2892+
@available(FoundationPreview 6.3, *)
28932893
public static let base64URLAlphabet = Base64EncodingOptions(rawValue: 1 << 6)
28942894

28952895
/// Omit the `=` padding characters in the end of the base64 encoded result
2896-
@available(FoundationPreview 6.2, *)
2896+
@available(FoundationPreview 6.3, *)
28972897
public static let omitPaddingCharacter = Base64EncodingOptions(rawValue: 1 << 7)
28982898
}
28992899

0 commit comments

Comments
 (0)