Skip to content

Commit 0dbbca0

Browse files
committed
bump version
1 parent e47bd69 commit 0dbbca0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Sources/SPMGraphExecutable/SPMGraph.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ struct SPMGraph: AsyncParsableCommand {
6363
discussion: """
6464
Visualization, Selective testing, and Linting of a Package.swift dependency graph
6565
""",
66-
version: "1.0.0",
66+
version: "1.0.1",
6767
subcommands: [
6868
Config.self,
6969
Load.self,

Sources/SPMGraphExecutable/Subcommands/Config.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct Config: AsyncParsableCommand {
4747
4848
Once the `SPMGraphConfig.swift` is edited, your configuration is dynamically loaded into spmgraph and leveraged on all other commands.
4949
""",
50-
version: "1.0.0"
50+
version: "1.0.1"
5151
)
5252

5353
@OptionGroup var arguments: ConfigArguments

Sources/SPMGraphExecutable/Subcommands/Lint.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct Lint: AsyncParsableCommand {
5656
Run checks on a given Package.swift and raises configuration issues and potential optimisations
5757
that otherwise would be bubbled up by the build system later on.
5858
""",
59-
version: "1.0.0"
59+
version: "1.0.1"
6060
)
6161

6262
@OptionGroup var arguments: LintArguments

Sources/SPMGraphExecutable/Subcommands/Load.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct Load: AsyncParsableCommand {
4141
abstract: "Loads your configuration into spmgraph.",
4242
discussion:
4343
"It dynamically loads your `SPMGraphConfig.swift` file into spmgraph so that it can be used by the tool and leveraged on all other commands.",
44-
version: "1.0.0"
44+
version: "1.0.1"
4545
)
4646

4747
@OptionGroup var arguments: LoadArguments

Sources/SPMGraphExecutable/Subcommands/Tests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct Tests: AsyncParsableCommand {
6060
Given changed files, it traverses the dependency graph and defines which modules were affected.
6161
Useful to optimize for building and running tests only for what changed.
6262
""",
63-
version: "1.0.0"
63+
version: "1.0.1"
6464
)
6565

6666
@OptionGroup var arguments: TestsArguments

Sources/SPMGraphExecutable/Subcommands/Visualize.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ struct VisualizeArguments: ParsableArguments {
5252
struct Visualize: AsyncParsableCommand {
5353
static let configuration = CommandConfiguration(
5454
abstract: "Generates a visual representation of your dependency graph",
55-
version: "1.0.0"
55+
version: "1.0.1"
5656
)
5757

5858
@OptionGroup var arguments: VisualizeArguments

0 commit comments

Comments
 (0)