diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14d7f90d71..ece2dcd3de 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 ${{ vars.MUSL_CROSS_URL }}/x86_64-linux-musl-cross.tgz + wget https://pub-c0627345c16f47ab858c9469133073a8.r2.dev/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 ${{ vars.MUSL_CROSS_URL }}/aarch64-linux-musl-cross.tgz + wget https://pub-c0627345c16f47ab858c9469133073a8.r2.dev/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') diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a10f4e02e..ffac2f4f64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Changelog -## v1.5.15 +## v1.5.16 ### FEATURE [\#3130](https://github.com/bnb-chain/bsc/pull/3130) config: update BSC Mainnet hardfork time: Maxwell @@ -16,8 +16,10 @@ [\#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.15 ## v1.5.14 -deprecated, v1.5.14 was replaced by v1.5.15 +deprecated, v1.5.14 & v1.5.15 are replaced by v1.5.16 ## v1.5.13 ### FEATURE diff --git a/version/version.go b/version/version.go index 866d6d770e..f8cae2048d 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 = 15 // Patch version component of the current release + Patch = 16 // Patch version component of the current release Meta = "" // Version metadata to append to the version string )