Skip to content

Commit

Permalink
Namada 0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
juped committed Mar 13, 2023
1 parent bce318a commit a4539f9
Show file tree
Hide file tree
Showing 36 changed files with 97 additions and 66 deletions.
2 changes: 2 additions & 0 deletions .changelog/v0.14.2/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Namada 0.14.2 is a maintenance release addressing issues with
proof-of-stake validator logic.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# CHANGELOG

## v0.14.2

Namada 0.14.2 is a maintenance release addressing issues with
proof-of-stake validator logic.

### BUG FIXES

- Fixed the PrefixIter order of iteration in the write-
log to always match the iteration order in the storage.
([#1141](https://github.com/anoma/namada/pull/1141))
- Fixed the init-chain handler to stop committing state to the DB
as it may be re-applied when the node is shut-down before the
first block is committed, leading to an invalid genesis state.
([#1182](https://github.com/anoma/namada/pull/1182))
- Fixed an issue in which a validator's stake and validator sets
data gets into an invalid state (duplicate records with incorrect
values) due to a logic error in clearing of historical epoch data.
([#1191](https://github.com/anoma/namada/pull/1191))

### FEATURES

- Added a lazy set collection.
([#1196](https://github.com/anoma/namada/pull/1196))

### IMPROVEMENTS

- Ensure that PoS validator consensus keys are unique.
([#1197](https://github.com/anoma/namada/pull/1197))

## v0.14.1

Namada 0.14.1 is a bugfix release addressing issues with inactive
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "GPL-3.0"
name = "namada_apps"
readme = "../README.md"
resolver = "2"
version = "0.14.1"
version = "0.14.2"
default-run = "namada"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_core"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion encoding_spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "GPL-3.0"
name = "namada_encoding_spec"
readme = "../README.md"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = ["abciplus"]
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_macros"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion proof_of_stake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "GPL-3.0"
name = "namada_proof_of_stake"
readme = "../README.md"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = ["abciplus"]
Expand Down
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_test_utils"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[dependencies]
borsh = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_tests"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = ["abciplus", "wasm-runtime"]
Expand Down
2 changes: 1 addition & 1 deletion tx_prelude/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_tx_prelude"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = ["abciplus"]
Expand Down
2 changes: 1 addition & 1 deletion vm_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_vm_env"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = ["abciplus"]
Expand Down
2 changes: 1 addition & 1 deletion vp_prelude/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "namada_vp_prelude"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[features]
default = ["abciplus"]
Expand Down
24 changes: 12 additions & 12 deletions wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions wasm/checksums.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"tx_bond.wasm": "tx_bond.e17063ecc38193d2c1d4b4968946cc1459e6952b7158127d0bb0791dab2d0385.wasm",
"tx_change_validator_commission.wasm": "tx_change_validator_commission.cca673b0d35f414712886965f3da8575555ff2bd53155cc409a3337f7ac2e501.wasm",
"tx_ibc.wasm": "tx_ibc.cde7ad9004d366052d0d04d1b854779d70f03d87590087aec11154e0202331c2.wasm",
"tx_init_account.wasm": "tx_init_account.fa6ebcf870f7808aa1b8c1fe381ca46b2f9b33aa9fefe45631d02b2eff32e9c6.wasm",
"tx_init_proposal.wasm": "tx_init_proposal.f15c8578432b5301cc278c6f7c6d8a023d78f9c462e301accc5b8edcc010377a.wasm",
"tx_init_validator.wasm": "tx_init_validator.1316aa61cca2c4aedca7dff267b2a1a987d435c345b969d42b5fe839d5c011b2.wasm",
"tx_reveal_pk.wasm": "tx_reveal_pk.8112929b427ee1fc38dfabeed9a5f4eab2aa654abc4f9edab6f5bb5246cb267d.wasm",
"tx_transfer.wasm": "tx_transfer.f645cffb4e9c564189d67b0b5d50572b4f9e46bf63a9072b67424147b8a5de78.wasm",
"tx_unbond.wasm": "tx_unbond.378359247e0b07a53d674ec8474a99294f4f7ae20f5d0a970283865748669b18.wasm",
"tx_update_vp.wasm": "tx_update_vp.dbaf4fdacb12fba9fe1231afd0371a302a8242cbbf74565d8605a646fe5a00ab.wasm",
"tx_vote_proposal.wasm": "tx_vote_proposal.2ad25d54885abc44d8cb248a10ee9f9e65dbc0688b1525e4f7f49c86a339f085.wasm",
"tx_withdraw.wasm": "tx_withdraw.78e87e2140a140291f55443a6fbe405f058597796794b0c6348e55eba10b914e.wasm",
"vp_implicit.wasm": "vp_implicit.f959dc72e695150c387a23e1624278e8084f4a58e6e15b7de3760b264475b679.wasm",
"vp_masp.wasm": "vp_masp.905c1cbebf68092f41b74870451d4d7977d659b181bf8c4e7ec33132d5894afc.wasm",
"vp_testnet_faucet.wasm": "vp_testnet_faucet.00a89c28c9611dc6e7ba68df64f495cab62237e1f4615944066d6b54b9574236.wasm",
"vp_token.wasm": "vp_token.704ae6e87f2e8749ae138d287805b141256f6f06d0920e62ce6a544e6ad11439.wasm",
"vp_user.wasm": "vp_user.2ecbba34eb1ef909ceac5277dba84075d4056f0448bf46f8001e16b932423f45.wasm",
"vp_validator.wasm": "vp_validator.49b42d393aeae5717d18bcbe1b735dabca4dc888b5fc61c3db33ef74208a60eb.wasm"
"tx_bond.wasm": "tx_bond.f7f4169dbd708a4776fa6f19c32c259402a7b7c34b9c1ac34029788c27f125fa.wasm",
"tx_change_validator_commission.wasm": "tx_change_validator_commission.49143933426925d549739dd06890f1c4709a27eca101596e34d5e0dbec1bd4c5.wasm",
"tx_ibc.wasm": "tx_ibc.e8081fbfb59dbdb42a2f66e89056fff3058bd7c3111e131b8ff84452752d94f5.wasm",
"tx_init_account.wasm": "tx_init_account.9ad3971335452cc7eada0dc35fb1e6310a05e8e2367e3067c0af8e21dad5705b.wasm",
"tx_init_proposal.wasm": "tx_init_proposal.d0419c9cd9de905c92a0b9839ab94cdc3daf19b050375798f55503150ddc2bfa.wasm",
"tx_init_validator.wasm": "tx_init_validator.ef991c1019164b5d2432a3fba01e4b116825b024cc0dc3bcecdd1555ae7c6579.wasm",
"tx_reveal_pk.wasm": "tx_reveal_pk.b0509274d06dfe22988f03dd4c42e0a70bc40e21983f9670a603c057784dbd8f.wasm",
"tx_transfer.wasm": "tx_transfer.deae9d3955f0761331c21f253f4dc9b1bc93fe268a53049f9eb41d969848c62d.wasm",
"tx_unbond.wasm": "tx_unbond.8c63c856db5b608b44179abf29ec8996005d5a5e5467b11b1afad09b9052e69a.wasm",
"tx_update_vp.wasm": "tx_update_vp.287a8dde719b278b10c63384adbeacf40906b40e173b3ab0d0fac659e323951a.wasm",
"tx_vote_proposal.wasm": "tx_vote_proposal.f86a66ce7c96be2ed4ee6b8d1fa0186264749ef88ec22575bf2c31ca82341c3e.wasm",
"tx_withdraw.wasm": "tx_withdraw.c9d451ccf7561db4a1113fa5c4c9d8266f185030c3ceb57e0204707de1489792.wasm",
"vp_implicit.wasm": "vp_implicit.03f75fbf6a2a4b343ba0d5691d381e643af1e592ed6dcc7f65b5554caf2f52df.wasm",
"vp_masp.wasm": "vp_masp.013f6e673ad10fcf233f1cda940fea7042c2ba4ac79b30c4fd9dc6cfa60a6080.wasm",
"vp_testnet_faucet.wasm": "vp_testnet_faucet.a9bbcb7fbc484fe703e0bf18661701302bf2cc9425f4e8bcc8becc8ecc58a51c.wasm",
"vp_token.wasm": "vp_token.ac90ced308b618c6d991939a60735a1679e773bb5e76dd03a4dc4c9d56180ddd.wasm",
"vp_user.wasm": "vp_user.cf363aaf2fd13faa79501d8c8c251bafe22992b9989035b2c2edaf3edbe629fe.wasm",
"vp_validator.wasm": "vp_validator.4f7b0efb2f742b4b605738fe48ede23f57623ff083f23dc18c5bf8c5e26294cd.wasm"
}
2 changes: 1 addition & 1 deletion wasm/tx_template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "GPL-3.0"
name = "tx_template"
resolver = "2"
version = "0.14.1"
version = "0.14.2"

[lib]
crate-type = ["cdylib"]
Expand Down
Loading

0 comments on commit a4539f9

Please sign in to comment.