Skip to content

Commit 8f75d40

Browse files
committed
bump minor version
1 parent e68ad34 commit 8f75d40

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

godbledger/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
const (
2424
VersionMajor = 0 // Major version component of the current release
25-
VersionMinor = 3 // Minor version component of the current release
25+
VersionMinor = 4 // Minor version component of the current release
2626
VersionPatch = 0 // Patch version component of the current release
2727
VersionMeta = "alpha" // Version metadata to append to the version string
2828
)

utils/make-release.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

33
version=$1
4-
#build=linux
5-
build=arm
4+
build=linux
5+
#build=arm
66

77
if [ -z "$version" ]
88
then
@@ -11,6 +11,8 @@ then
1111
fi
1212

1313
make VERSION=$version release
14+
make VERSION=$version linux-arm-7
15+
make VERSION=$version linux-arm-64
1416

1517
WORKING_DIR=release/
1618

0 commit comments

Comments
 (0)