Skip to content

Commit 1d7f3a2

Browse files
committed
v0.4.10 release
1 parent b735a58 commit 1d7f3a2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ prereq:
5454

5555

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

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ build_script:
2727
- "%CPYTHON3DIR%\\python --version"
2828
- "%CPYTHON3DIR%\\python -m pip install --upgrade pip"
2929
- "%CPYTHON3DIR%\\python -m pip install cffi"
30-
- "%CPYTHON3DIR%\\python -m pip install --user -U pybindgen"
30+
- "%CPYTHON3DIR%\\python -m pip install pybindgen"
3131
- go version
3232
- go env
3333
- go get -v -t ./...

Diff for: version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package main
44

55
const (
6-
Version = "v0.4.9"
7-
GitCommit = "9dde376" // the commit JUST BEFORE the release
8-
VersionDate = "2024-04-23 00:02" // UTC
6+
Version = "v0.4.10"
7+
GitCommit = "b735a58" // the commit JUST BEFORE the release
8+
VersionDate = "2024-05-03 22:57" // UTC
99
)

0 commit comments

Comments
 (0)