diff --git a/Makefile b/Makefile index 5ba64d9..da982d9 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ gopath-update: go get -u ./... # NOTE: MUST update version number here prior to running 'make release' and edit this file! -VERS=v0.4.2 +VERS=v0.4.3 PACKAGE=main GIT_COMMIT=`git rev-parse --short HEAD` VERS_DATE=`date -u +%Y-%m-%d\ %H:%M` diff --git a/README.md b/README.md index ca00c93..7f29b88 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,7 @@ Options: -user="": username on https://www.pypa.io/en/latest/ for package name suffix -version="0.1.0": semantic version number -- can use e.g., git to get this from tag and pass as argument -vm="python": path to python interpreter + -dynamic-link=false: whether to link output shared library dynamically to Python $ gopy help exe diff --git a/version.go b/version.go index fb47933..8fa3273 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package main const ( - Version = "v0.4.2" - GitCommit = "406f982" // the commit JUST BEFORE the release - VersionDate = "2022-06-19 09:05" // UTC + Version = "v0.4.3" + GitCommit = "21ebc8c" // the commit JUST BEFORE the release + VersionDate = "2022-06-27 06:42" // UTC )