Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Add new items at the end of the relevant section under **Unreleased**.
- 'missing review manager link'
- 'missing author link'
- Remove warning for proposals with past due review period ([#94])
- Include validation report as part of extract command verbose output ([#105])

### Fixes

Expand Down Expand Up @@ -96,3 +97,4 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
[#92]: https://github.com/swiftlang/swift-evolution-metadata-extractor/pull/92
[#93]: https://github.com/swiftlang/swift-evolution-metadata-extractor/pull/93
[#94]: https://github.com/swiftlang/swift-evolution-metadata-extractor/pull/94
[#105]: https://github.com/swiftlang/swift-evolution-metadata-extractor/pull/105
1 change: 1 addition & 0 deletions Sources/EvolutionMetadataExtraction/ExtractionJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ extension ExtractionJob {
}

private static func writeEvolutionResultsAsJSON(results: EvolutionMetadata, outputURL: URL) throws {
verbosePrint(results.validationReport)
print("Writing file '\(outputURL.lastPathComponent)' to\n'\(outputURL.absoluteURL.path())'\n")

let jsonData = try results.jsonRepresentation
Expand Down
Loading