diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8f5e62367..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 https://musl.cc/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 https://musl.cc/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 be1e62f75e..ffac2f4f64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Changelog -## v1.5.14 +## v1.5.16 ### FEATURE [\#3130](https://github.com/bnb-chain/bsc/pull/3130) config: update BSC Mainnet hardfork time: Maxwell @@ -16,6 +16,11 @@ [\#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 & v1.5.15 are replaced by v1.5.16 + ## v1.5.13 ### FEATURE [\#3019](https://github.com/bnb-chain/bsc/pull/3019) BEP-524: Short Block Interval Phase Two: 0.75 seconds diff --git a/version/version.go b/version/version.go index 4452049994..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 = 14 // 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 )