Merged packet and segment libraries since they belong together

This commit is contained in:
David Vennik
2022-12-09 11:56:56 +01:00
parent bbefa3dcb4
commit 03c9799e57
6 changed files with 140 additions and 174 deletions

View File

@@ -13,11 +13,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 = "461c4d70ab24685a7f3973a55c86bf840f6d022a"
ParentGitCommit = "0afe0959a4ae4a82d16f47e58886272acca75623"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-09T11:29:44+01:00"
BuildTime = "2022-12-09T11:56:56+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.162"
SemVer = "v0.0.163"
// 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.
@@ -25,7 +25,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 162
Patch = 163
)
// Version returns a pretty printed version information string.