We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed3693 commit a379c31Copy full SHA for a379c31
Project.swift
@@ -2,8 +2,8 @@ import ProjectDescription
2
3
let settings = Environment.selfCompiled.getBoolean(default: false)
4
5
-let version: Version = .init(1, 7, 3)
6
-let build: String = "109"
+let version: String = "1.7.3.1"
+let build: String = "110"
7
8
func corkTarget(configureWithSelfCompiled: Bool) -> ProjectDescription.Target {
9
var additionalCompilationConditions = [String]()
@@ -243,7 +243,7 @@ let project = Project(
243
settings: .settings(
244
base: [
245
"SWIFT_VERSION": "6.0",
246
- "MARKETING_VERSION": .init(stringLiteral: version.description),
+ "MARKETING_VERSION": .init(stringLiteral: version),
247
"CURRENT_PROJECT_VERSION": .init(stringLiteral: build)
248
],
249
configurations: [
0 commit comments