-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add git commands for versioning (#98)
- Loading branch information
1 parent
f8dfbab
commit 7d6a60c
Showing
6 changed files
with
112 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
module build | ||
|
||
go 1.22 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.6 | ||
|
||
replace github.com/outofforest/build/v2 => ../ | ||
|
||
require ( | ||
github.com/outofforest/build/v2 v2.2.0 | ||
github.com/outofforest/tools v1.0.0 | ||
github.com/outofforest/tools v1.0.4 | ||
) | ||
|
||
require ( | ||
github.com/outofforest/ioc/v2 v2.5.2 // indirect | ||
github.com/outofforest/libexec v0.3.9 // indirect | ||
github.com/outofforest/logger v0.5.4 // indirect | ||
github.com/outofforest/logger v0.5.5 // indirect | ||
github.com/outofforest/parallel v0.2.3 // indirect | ||
github.com/outofforest/run v0.6.0 // indirect | ||
github.com/outofforest/run v0.8.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/ridge/must v0.6.0 // indirect | ||
github.com/samber/lo v1.47.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
module github.com/outofforest/build/v2 | ||
|
||
go 1.22 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.6 | ||
|
||
require ( | ||
github.com/outofforest/libexec v0.3.9 | ||
github.com/outofforest/logger v0.5.4 | ||
github.com/outofforest/run v0.6.0 | ||
github.com/outofforest/tools v1.0.0 | ||
github.com/outofforest/logger v0.5.5 | ||
github.com/outofforest/run v0.8.0 | ||
github.com/outofforest/tools v1.0.4 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/samber/lo v1.47.0 | ||
github.com/stretchr/testify v1.9.0 | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/mod v0.21.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/outofforest/ioc/v2 v2.5.2 // indirect | ||
github.com/outofforest/parallel v0.2.3 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/ridge/must v0.6.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters