diff --git a/Changelog.md b/Changelog.md index cac86690..4449ee9f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-rc.1] + ### Added - Added support for generating documentation for @@ -345,7 +347,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release. -[unreleased]: https://github.com/SwiftDocOrg/swift-doc/compare/1.0.0-beta.6...master +[unreleased]: https://github.com/SwiftDocOrg/swift-doc/compare/1.0.0-rc.1...master +[1.0.0-rc.1]: https://github.com/SwiftDocOrg/swift-doc/releases/tag/1.0.0-rc.1 [1.0.0-beta.6]: https://github.com/SwiftDocOrg/swift-doc/releases/tag/1.0.0-beta.6 [1.0.0-beta.5]: https://github.com/SwiftDocOrg/swift-doc/releases/tag/1.0.0-beta.5 [1.0.0-beta.4]: https://github.com/SwiftDocOrg/swift-doc/releases/tag/1.0.0-beta.4 diff --git a/Sources/swift-doc/main.swift b/Sources/swift-doc/main.swift index ce90c54b..cf2ea93e 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.6", + version: "1.0.0-rc.1", subcommands: [Generate.self, Coverage.self, Diagram.self] ) }