Bumping proc version

This commit is contained in:
David Vennik
2022-12-23 19:44:45 +00:00
parent f7fe4d1d42
commit 55b15d8926
3 changed files with 9 additions and 7 deletions

4
go.mod
View File

@@ -3,7 +3,7 @@ module github.com/Indra-Labs/indra
go 1.19
require (
github.com/cybriq/proc v0.20.5
github.com/cybriq/proc v0.20.7
github.com/cybriq/qu v0.1.2
github.com/davecgh/go-spew v1.1.1
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
@@ -38,3 +38,5 @@ require (
replace crypto/sha256 => github.com/minio/sha256-simd v1.0.0
replace math/rand => github.com/lukechampine/frand v1.4.2
//replace github.com/cybriq/proc => ../../cybriq/proc

4
go.sum
View File

@@ -6,8 +6,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/cybriq/proc v0.20.5 h1:ND4GVyIrWeOSInUnQ7cnCaAJVypcImPun3MB5EkgWOA=
github.com/cybriq/proc v0.20.5/go.mod h1:b6JDUUwfe8soxWzvAziWA/msrb73O2v6gZEQL+wHYx8=
github.com/cybriq/proc v0.20.7 h1:ZBPBGXmoG+xx/ZWFz3e3cmSAZicpyEzPjGiBkgMOoTM=
github.com/cybriq/proc v0.20.7/go.mod h1:b6JDUUwfe8soxWzvAziWA/msrb73O2v6gZEQL+wHYx8=
github.com/cybriq/qu v0.1.2 h1:4R65BhG22C3mY4fXYZpfJYklw9N1AVkCwTwrby4andY=
github.com/cybriq/qu v0.1.2/go.mod h1:1Ph7YWr5HVJTBSRTQ8cFcaFE+DK56r+cSpbNWD+CQS8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

View File

@@ -10,11 +10,11 @@ var (
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "89f4a51a85574c75aa0fa27b7b2d13381e9ee6b2"
ParentGitCommit = "9f843d9911e185ceb2f0bbf7fcbaa0cf311f494d"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-23T18:31:03Z"
BuildTime = "2022-12-23T19:44:45Z"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.221"
SemVer = "v0.0.222"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag.
@@ -22,7 +22,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 221
Patch = 222
)
// Version returns a pretty printed version information string.