Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: prepare for release v0.10.4 #901

Merged
merged 1 commit into from
Dec 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.10.4
FEATURES
* [\#880](https://github.com/bnb-chain/node/pull/880) [BEP] BEP-159: Introduce A New Staking Mechanism on BNB Beacon Chain

IMPROVEMENT
* [\#899](https://github.com/bnb-chain/node/pull/899) [ci] update unmaintained tools to use maintained tools

BUG FIX
* [\#897](https://github.com/bnb-chain/node/pull/897) [fix] add bsc chainID to encodeSigHeader when submitting evidence for slashing


## 0.10.3
IMPROVEMENTS
* [\#886](https://github.com/bnb-chain/node/pull/875) [Staking] Fix issues for reward recon service
Expand Down
6 changes: 5 additions & 1 deletion asset/testnet/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ BEP153Height = 30516226
#Block height of BEP173 upgrade
BEP173Height = 9223372036854775807
#Block height of FixDoubleSignChainIdHeight upgrade
FixDoubleSignChainIdHeight = 9223372036854775807
FixDoubleSignChainIdHeight = 34587202
#Block height of BEP159Height upgrade
BEP159Height = 34587202
#Block height of BEP159Phase2Height upgrade
BEP159Phase2Height = 34963303

[query]
# ABCI query interface black list, suggested value: ["custom/gov/proposals", "custom/timelock/timelocks", "custom/atomicSwap/swapcreator", "custom/atomicSwap/swaprecipient"]
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var (
Version string
)

const NodeVersion = "v0.10.3"
const NodeVersion = "v0.10.4"

func init() {
Version = fmt.Sprintf("BNB Beacon Chain Release: %s;", NodeVersion)
Expand Down