4 Commits

Author SHA1 Message Date
Loki Verloren
d3a869b129 wuff 2021-04-30 20:40:35 +02:00
Loki Verloren
414c50cbd7 oopsie 2021-04-30 20:31:51 +02:00
Loki Verloren
aa2e76cef1 oo 2021-04-30 20:29:12 +02:00
Loki Verloren
39c743f551 update *yawn* 2021-04-30 20:22:27 +02:00
3 changed files with 12 additions and 7 deletions

9
go.mod
View File

@@ -7,8 +7,8 @@ require (
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/p9c/log v0.0.6
github.com/p9c/qu v0.0.3
github.com/p9c/log v0.0.12
github.com/p9c/qu v0.0.7
github.com/stretchr/testify v1.6.1 // indirect
go.uber.org/atomic v1.7.0
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
@@ -16,3 +16,8 @@ require (
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
)
replace (
github.com/p9c/log => ../log
github.com/p9c/qu => ../qu
)

2
log.go
View File

@@ -2,7 +2,7 @@ package interrupt
import (
"github.com/p9c/log"
"github.com/p9c/qu/version"
"github.com/p9c/interrupt/version"
)
var F, E, W, I, D, T = log.GetLogPrinterSet(log.AddLoggerSubsystem(version.PathBase))

View File

@@ -13,12 +13,12 @@ var (
// GitRef is the gitref, as in refs/heads/branchname
GitRef = "refs/heads/main"
// GitCommit is the commit hash of the current HEAD
GitCommit = "86a6516bbff5524c52f475ed124b7f8f27ad219d"
GitCommit = "414c50cbd74ceeea90b540684b1306a14866894f"
// BuildTime stores the time when the current binary was built
BuildTime = "2021-04-30T18:33:26+02:00"
BuildTime = "2021-04-30T20:33:25+02:00"
// Tag lists the Tag on the build, adding a + to the newest Tag if the commit is
// not that commit
Tag = "v0.0.3"
Tag = "v0.0.6+"
// PathBase is the path base returned from runtime caller
PathBase = "/home/loki/src/github.com/p9c/pod/pkg/interrupt/"
// Major is the major number from the tag
@@ -26,7 +26,7 @@ var (
// Minor is the minor number from the tag
Minor = 0
// Patch is the patch version number from the tag
Patch = 3
Patch = 6
// Meta is the extra arbitrary string field from Semver spec
Meta = ""
)