We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75cebb9 commit b463408Copy full SHA for b463408
Sources/ModuleInterface/Classes/ModuleInterface.swift
@@ -29,7 +29,7 @@ struct ModuleInterface {
29
}
30
31
32
- static let version: String = "0.0.1"
+ static let version: String = "0.0.3"
33
static let defaultOutputPath = "Documentation"
34
35
func run() {
Tests/ModuleInterfaceTests/VersionTests.swift
@@ -16,7 +16,7 @@ class VersionCommandTests: XCTestCase {
16
17
let outputData = pipe.fileHandleForReading.readDataToEndOfFile()
18
let output = String(decoding: outputData, as: UTF8.self).trimmingCharacters(in: .newlines)
19
- XCTAssertEqual(output, "ModuleInterface v0.0.1")
+ XCTAssertEqual(output, "ModuleInterface v0.0.3")
20
21
22
0 commit comments