diff --git a/Changelog.md b/Changelog.md index 6925f6f4..59a5a259 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Fixed version number for swift-doc command. + #159 by @mattt. + ## [1.0.0-beta.4] - 2020-07-31 ### Added diff --git a/Sources/swift-doc/main.swift b/Sources/swift-doc/main.swift index da386a95..13fd95a8 100644 --- a/Sources/swift-doc/main.swift +++ b/Sources/swift-doc/main.swift @@ -22,7 +22,7 @@ struct SwiftDoc: ParsableCommand { static var configuration = CommandConfiguration( commandName: "swift doc", abstract: "A utility for generating documentation for Swift code.", - version: "1.0.0-beta.3", + version: "1.0.0-beta.4", subcommands: [Generate.self, Coverage.self, Diagram.self] ) }