Skip to content

Commit 7e987cf

Browse files
FranzBuschitingliu
andcommitted
Update availability
Co-authored-by: Tina L <[email protected]>
1 parent deeaab4 commit 7e987cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import CompilerPluginSupport
99
let availabilityTags: [_Availability] = [
1010
_Availability("FoundationPreview"), // Default FoundationPreview availability
1111
]
12-
let versionNumbers = ["6.0.2", "6.1", "6.2"]
12+
let versionNumbers = ["6.0.2", "6.1", "6.2", "6.3"]
1313

1414
// Availability Macro Utilities
1515

Proposals/NNNN-random-uuid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This proposal adds a new static method to the `UUID` type to generate new random
3434
///
3535
/// - Parameter generator: The random number generator to use when creating the new random value.
3636
/// - Returns: A random UUID.
37-
@available(FoundationPreview 6.2, *)
37+
@available(FoundationPreview 6.3, *)
3838
public static func random(
3939
using generator: inout some RandomNumberGenerator
4040
) -> UUID

Sources/FoundationEssentials/UUID.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
8181
///
8282
/// - Parameter generator: The random number generator to use when creating the new random value.
8383
/// - Returns: A random UUID.
84-
@available(FoundationPreview 6.2, *)
84+
@available(FoundationPreview 6.3, *)
8585
public static func random(
8686
using generator: inout some RandomNumberGenerator
8787
) -> UUID {

0 commit comments

Comments
 (0)