Skip to content

Commit 8e4ea59

Browse files
chore: mark api v12 as supported - WPB-20353 πŸ’ (#3763)
Co-authored-by: John Nguyen <[email protected]>
1 parent 8b1d1db commit 8e4ea59

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

β€ŽWireNetwork/Sources/WireNetwork/Models/API/APIVersion.swiftβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ public enum APIVersion: UInt, CaseIterable, Comparable, Sendable {
4848
/// Only if these critera are met should we explicitly mark the version
4949
/// as production ready.
5050

51-
public static let productionVersions: Set<Self> = [.v0, .v1, .v2, .v3, .v4, .v5, .v6, .v7, .v8, .v9, .v10, .v11]
51+
public static let productionVersions: Set<Self> = [
52+
.v0, .v1, .v2, .v3, .v4, .v5, .v6, .v7, .v8, .v9, .v10, .v11, .v12
53+
]
5254

5355
/// API versions currently under development and not suitable for production
5456
/// environments.

β€Žwire-ios-sync-engine/Source/SessionManager/APIVersionResolver.swiftβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ public extension APIVersion {
185185
/// Only if these critera are met should we explicitly mark the version
186186
/// as production ready.
187187

188-
static let productionVersions: Set<Self> = [.v0, .v1, .v2, .v3, .v4, .v5, .v6, .v7, .v8, .v9, .v10, .v11]
188+
static let productionVersions: Set<Self> = [
189+
.v0, .v1, .v2, .v3, .v4, .v5, .v6, .v7, .v8, .v9, .v10, .v11, .v12
190+
]
189191

190192
/// API versions currently under development and not suitable for production
191193
/// environments.

0 commit comments

Comments
Β (0)