We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd0e95d commit 49556f1Copy full SHA for 49556f1
Makefile
@@ -48,7 +48,7 @@ gopath-update:
48
go get -u ./...
49
50
# NOTE: MUST update version number here prior to running 'make release' and edit this file!
51
-VERS=v0.4.0
+VERS=v0.4.1
52
PACKAGE=main
53
GIT_COMMIT=`git rev-parse --short HEAD`
54
VERS_DATE=`date -u +%Y-%m-%d\ %H:%M`
go.mod
@@ -1,3 +1,3 @@
1
module github.com/go-python/gotopy
2
3
-go 1.17
+go 1.15
version.go
@@ -3,7 +3,7 @@
package main
4
5
const (
6
- Version = "v0.4.0"
7
- GitCommit = "3524724" // the commit JUST BEFORE the release
8
- VersionDate = "2021-09-25 19:51" // UTC
+ Version = "v0.4.1"
+ GitCommit = "cd0e95d" // the commit JUST BEFORE the release
+ VersionDate = "2021-09-25 19:54" // UTC
9
)
0 commit comments