Skip to content

Commit b9b5a05

Browse files
authored
release: bump v1.5.15 (bnb-chain#3148)
1 parent 93b3b6a commit b9b5a05

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
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 ${{ env.MUSL_CROSS_URL }}/x86_64-linux-musl-cross.tgz
53+
wget ${{ vars.MUSL_CROSS_URL }}/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 ${{ env.MUSL_CROSS_URL }}/aarch64-linux-musl-cross.tgz
73+
wget ${{ vars.MUSL_CROSS_URL }}/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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
2-
## v1.5.14
2+
## v1.5.15
33
### FEATURE
44
[\#3130](https://github.com/bnb-chain/bsc/pull/3130) config: update BSC Mainnet hardfork time: Maxwell
55

@@ -16,6 +16,9 @@
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+
## v1.5.14
20+
deprecated, v1.5.14 was replaced by v1.5.15
21+
1922
## v1.5.13
2023
### FEATURE
2124
[\#3019](https://github.com/bnb-chain/bsc/pull/3019) BEP-524: Short Block Interval Phase Two: 0.75 seconds

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 = 14 // Patch version component of the current release
22+
Patch = 15 // Patch version component of the current release
2323
Meta = "" // Version metadata to append to the version string
2424
)

0 commit comments

Comments
 (0)