v0.4.4 release

This commit is contained in:
Randall C. O'Reilly 2022-06-30 23:31:47 -07:00
parent 2a31e2f5ec
commit 0eb43bb47f
2 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ gopath-update:
go get -u ./... go get -u ./...
# NOTE: MUST update version number here prior to running 'make release' and edit this file! # NOTE: MUST update version number here prior to running 'make release' and edit this file!
VERS=v0.4.3 VERS=v0.4.4
PACKAGE=main PACKAGE=main
GIT_COMMIT=`git rev-parse --short HEAD` GIT_COMMIT=`git rev-parse --short HEAD`
VERS_DATE=`date -u +%Y-%m-%d\ %H:%M` VERS_DATE=`date -u +%Y-%m-%d\ %H:%M`

View File

@ -3,7 +3,7 @@
package main package main
const ( const (
Version = "v0.4.3" Version = "v0.4.4"
GitCommit = "21ebc8c" // the commit JUST BEFORE the release GitCommit = "2a31e2f" // the commit JUST BEFORE the release
VersionDate = "2022-06-27 06:42" // UTC VersionDate = "2022-07-01 06:31" // UTC
) )