v0.4.10 release

This commit is contained in:
Randall C. O'Reilly 2024-05-03 15:57:34 -07:00
parent b735a58c6b
commit 1d7f3a2d29
3 changed files with 5 additions and 5 deletions

View File

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

View File

@ -27,7 +27,7 @@ build_script:
- "%CPYTHON3DIR%\\python --version"
- "%CPYTHON3DIR%\\python -m pip install --upgrade pip"
- "%CPYTHON3DIR%\\python -m pip install cffi"
- "%CPYTHON3DIR%\\python -m pip install --user -U pybindgen"
- "%CPYTHON3DIR%\\python -m pip install pybindgen"
- go version
- go env
- go get -v -t ./...

View File

@ -3,7 +3,7 @@
package main
const (
Version = "v0.4.9"
GitCommit = "9dde376" // the commit JUST BEFORE the release
VersionDate = "2024-04-23 00:02" // UTC
Version = "v0.4.10"
GitCommit = "b735a58" // the commit JUST BEFORE the release
VersionDate = "2024-05-03 22:57" // UTC
)