We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1628c66 commit 45c2aaaCopy full SHA for 45c2aaa
Sources/Changelog.swift
@@ -4,6 +4,11 @@ import ArgumentParser
4
5
@main
6
struct Changelog: ParsableCommand {
7
+ static let configuration = CommandConfiguration(
8
+ abstract: "Get items from a Changelog.md file for a specific release or that are unreleased.",
9
+ version: "1.0.0"
10
+ )
11
+
12
enum Release: ExpressibleByArgument, CustomStringConvertible {
13
case unreleased
14
case release(String)
@@ -30,7 +35,7 @@ struct Changelog: ParsableCommand {
30
35
}
31
36
32
37
33
-
38
34
39
@Argument(help: "Path to Changelog.md file")
40
var path: String
41
0 commit comments