Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/SPMGraphConfigSetup/Resources/Package.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ let package = Package(
),
],
dependencies: [
// From `0.0.8` so that it always automatically picks and uses the latest release
// From `1.0.0` so that it always automatically picks and uses the latest release
// When developing it should be updated to the working branch
.package(
url: "https://github.com/getyourguide/spmgraph.git",
from: "0.0.8"
from: "1.0.0"
),
// - Pinned to the the Swift 6.2 development / Xcode 16.3
// It auto exports SwiftToolsSupport, so no need to directly depend it 🙏
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMGraphExecutable/SPMGraph.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ struct SPMGraph: AsyncParsableCommand {
discussion: """
Visualization, Selective testing, and Linting of a Package.swift dependency graph
""",
version: "1.0.0",
version: "1.0.1",
subcommands: [
Config.self,
Load.self,
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMGraphExecutable/Subcommands/Config.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct Config: AsyncParsableCommand {

Once the `SPMGraphConfig.swift` is edited, your configuration is dynamically loaded into spmgraph and leveraged on all other commands.
""",
version: "1.0.0"
version: "1.0.1"
)

@OptionGroup var arguments: ConfigArguments
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMGraphExecutable/Subcommands/Lint.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct Lint: AsyncParsableCommand {
Run checks on a given Package.swift and raises configuration issues and potential optimisations
that otherwise would be bubbled up by the build system later on.
""",
version: "1.0.0"
version: "1.0.1"
)

@OptionGroup var arguments: LintArguments
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMGraphExecutable/Subcommands/Load.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct Load: AsyncParsableCommand {
abstract: "Loads your configuration into spmgraph.",
discussion:
"It dynamically loads your `SPMGraphConfig.swift` file into spmgraph so that it can be used by the tool and leveraged on all other commands.",
version: "1.0.0"
version: "1.0.1"
)

@OptionGroup var arguments: LoadArguments
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMGraphExecutable/Subcommands/Tests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ struct Tests: AsyncParsableCommand {
Given changed files, it traverses the dependency graph and defines which modules were affected.
Useful to optimize for building and running tests only for what changed.
""",
version: "1.0.0"
version: "1.0.1"
)

@OptionGroup var arguments: TestsArguments
Expand Down
2 changes: 1 addition & 1 deletion Sources/SPMGraphExecutable/Subcommands/Visualize.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct VisualizeArguments: ParsableArguments {
struct Visualize: AsyncParsableCommand {
static let configuration = CommandConfiguration(
abstract: "Generates a visual representation of your dependency graph",
version: "1.0.0"
version: "1.0.1"
)

@OptionGroup var arguments: VisualizeArguments
Expand Down