Added spare byte for later expansion to allow other cipher modes

This commit is contained in:
David Vennik
2022-12-10 10:22:12 +01:00
parent cdeeb4dc1e
commit 97b0ecd7c6
2 changed files with 8 additions and 8 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 = "5c1f1576c659aaa80aef70aad02d4a01e15b7030"
ParentGitCommit = "f0baa3a4880e7f90b83a6766ef593193a44aa5b2"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-10T09:50:44+01:00"
BuildTime = "2022-12-10T10:22:12+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.166"
SemVer = "v0.0.167"
// 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 = 166
Patch = 167
)
// Version returns a pretty printed version information string.