From 7d65b7dd374d740d6cdccbd908247f7e36b59b7c Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:07:12 +0800 Subject: [PATCH 1/3] ci: fix vars --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a952e03b21..14d7f90d71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | go mod download - wget ${{ env.MUSL_CROSS_URL }}/x86_64-linux-musl-cross.tgz + wget ${{ vars.MUSL_CROSS_URL }}/x86_64-linux-musl-cross.tgz tar -xvf ./x86_64-linux-musl-cross.tgz GIT_COMMIT=$(git rev-parse HEAD) GIT_COMMIT_DATE=$(git log -n1 --pretty='format:%cd' --date=format:'%Y%m%d') @@ -70,7 +70,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | go mod download - wget ${{ env.MUSL_CROSS_URL }}/aarch64-linux-musl-cross.tgz + wget ${{ vars.MUSL_CROSS_URL }}/aarch64-linux-musl-cross.tgz tar -xvf ./aarch64-linux-musl-cross.tgz GIT_COMMIT=$(git rev-parse HEAD) GIT_COMMIT_DATE=$(git log -n1 --pretty='format:%cd' --date=format:'%Y%m%d') From 089b2d78b63cc26554522f77f6c1431e59574667 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:09:35 +0800 Subject: [PATCH 2/3] release: prepare for release v1.5.15 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 4452049994..866d6d770e 100644 --- a/version/version.go +++ b/version/version.go @@ -19,6 +19,6 @@ package version const ( Major = 1 // Major version component of the current release Minor = 5 // Minor version component of the current release - Patch = 14 // Patch version component of the current release + Patch = 15 // Patch version component of the current release Meta = "" // Version metadata to append to the version string ) From bb99cfa4761ebe694f3afcbfe8e40d5d1a46f8dd Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:14:14 +0800 Subject: [PATCH 3/3] release: update CHANGELOG.md --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be1e62f75e..6a10f4e02e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Changelog -## v1.5.14 +## v1.5.15 ### FEATURE [\#3130](https://github.com/bnb-chain/bsc/pull/3130) config: update BSC Mainnet hardfork time: Maxwell @@ -16,6 +16,9 @@ [\#3123](https://github.com/bnb-chain/bsc/pull/3123) refactor: use maps.copy for cleaner map handling [\#3126](https://github.com/bnb-chain/bsc/pull/3126) jsutils: update getKeyParameters +## v1.5.14 +deprecated, v1.5.14 was replaced by v1.5.15 + ## v1.5.13 ### FEATURE [\#3019](https://github.com/bnb-chain/bsc/pull/3019) BEP-524: Short Block Interval Phase Two: 0.75 seconds