Skip to content

Commit cecc8c0

Browse files
committed
fix failure to build standard library
1 parent 08de4d9 commit cecc8c0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Sources/SwiftinitRender/Formats/Swiftinit.RenderFormat.Assets.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension Swiftinit.RenderFormat.Assets
2222
/// To reduce cache churn, not all assets are versioned. For example, the fonts and
2323
/// the favicon do not use the version numbers.
2424
@inlinable public static
25-
var version:MinorVersion { .v(8, 0) }
25+
var version:MinorVersion { .v(9, 0) }
2626
}
2727
extension Swiftinit.RenderFormat.Assets
2828
{

Sources/SymbolGraphBuilder/Artifacts/Artifacts.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ extension Artifacts
6969
// Only dump symbols for library targets.
7070
switch sources.module.type
7171
{
72-
case .binary: continue
72+
case .binary: include += sources.include
7373
case .executable: continue
7474
case .regular: include += sources.include
7575
case .macro: include += sources.include

Sources/UnidocQueryTests/Tests/SymbolQueries.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ struct SymbolQueries:UnidocDatabaseTestBattery
3838
}
3939
catch
4040
{
41-
swift = try await toolchain.generateDocs(
42-
for: try await .swift(in: workspace, clean: true))
41+
swift = try await toolchain.generateDocs(for: try await .swift(
42+
in: workspace,
43+
clean: true))
4344
}
4445

4546
let session:Mongo.Session = try await .init(from: pool)

0 commit comments

Comments
 (0)