Skip to content

Commit 38d8f62

Browse files
authored
release: bump v1.5.16 (bnb-chain#3149)
1 parent b9b5a05 commit 38d8f62

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: matrix.os == 'ubuntu-latest'
5151
run: |
5252
go mod download
53-
wget ${{ vars.MUSL_CROSS_URL }}/x86_64-linux-musl-cross.tgz
53+
wget https://pub-c0627345c16f47ab858c9469133073a8.r2.dev/x86_64-linux-musl-cross.tgz
5454
tar -xvf ./x86_64-linux-musl-cross.tgz
5555
GIT_COMMIT=$(git rev-parse HEAD)
5656
GIT_COMMIT_DATE=$(git log -n1 --pretty='format:%cd' --date=format:'%Y%m%d')
@@ -70,7 +70,7 @@ jobs:
7070
if: matrix.os == 'ubuntu-latest'
7171
run: |
7272
go mod download
73-
wget ${{ vars.MUSL_CROSS_URL }}/aarch64-linux-musl-cross.tgz
73+
wget https://pub-c0627345c16f47ab858c9469133073a8.r2.dev/aarch64-linux-musl-cross.tgz
7474
tar -xvf ./aarch64-linux-musl-cross.tgz
7575
GIT_COMMIT=$(git rev-parse HEAD)
7676
GIT_COMMIT_DATE=$(git log -n1 --pretty='format:%cd' --date=format:'%Y%m%d')

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
2-
## v1.5.15
2+
## v1.5.16
33
### FEATURE
44
[\#3130](https://github.com/bnb-chain/bsc/pull/3130) config: update BSC Mainnet hardfork time: Maxwell
55

@@ -16,8 +16,10 @@
1616
[\#3123](https://github.com/bnb-chain/bsc/pull/3123) refactor: use maps.copy for cleaner map handling
1717
[\#3126](https://github.com/bnb-chain/bsc/pull/3126) jsutils: update getKeyParameters
1818

19+
20+
## v1.5.15
1921
## v1.5.14
20-
deprecated, v1.5.14 was replaced by v1.5.15
22+
deprecated, v1.5.14 & v1.5.15 are replaced by v1.5.16
2123

2224
## v1.5.13
2325
### FEATURE

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ package version
1919
const (
2020
Major = 1 // Major version component of the current release
2121
Minor = 5 // Minor version component of the current release
22-
Patch = 15 // Patch version component of the current release
22+
Patch = 16 // Patch version component of the current release
2323
Meta = "" // Version metadata to append to the version string
2424
)

0 commit comments

Comments
 (0)