From f935ebfe524a0ff27bda07dadc3662e3e45b5125 Mon Sep 17 00:00:00 2001 From: Mattt Date: Tue, 1 Jun 2021 13:23:43 -0700 Subject: [PATCH] Bump version to 1.0.0-rc.1 --- Changelog.md | 5 ++++- Sources/swift-doc/main.swift | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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] ) }