Skip to content

Commit

Permalink
Namada 0.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
juped committed May 12, 2023
1 parent 8f4a21f commit 0060e0f
Show file tree
Hide file tree
Showing 37 changed files with 98 additions and 66 deletions.
2 changes: 2 additions & 0 deletions .changelog/v0.15.2/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Namada 0.15.2 is a bugfix release containing various fixes, including
a major improvement to storage usage.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# CHANGELOG

## v0.15.2

Namada 0.15.2 is a bugfix release containing various fixes, including
a major improvement to storage usage.

### BUG FIXES

- Fixed an issue with the iterator of LazyMap with a nested LazyVec collection
that would match non-data keys and fail to decode those with the data decoder.
([#1218](https://github.com/anoma/namada/pull/1218))
- PoS: fixed a function for clearing of historical epoched data
([\#1325](https://github.com/anoma/namada/pull/1325))

### FEATURES

- Added a utility command to the CLI to compute a tendermint address from a
namada public key. ([#1152](https://github.com/anoma/namada/pull/1152))

### IMPROVEMENTS

- Changed the default base directory. On linux, the default path will be `$XDG_DATA_HOME/com.heliax.namada`, on OSX it will be `$HOME/.local/share/com.heliax.namada`.
([#1138](https://github.com/anoma/namada/pull/1138))
- RocksDB optimization to reduce the storage usage
([#1333](https://github.com/anoma/namada/issues/1333))

### MISCELLANEOUS

- Enabled integer overflow checks in release build.
([#1295](https://github.com/anoma/namada/pull/1295))

## v0.15.1

Namada 0.15.1 is a patch release addressing issues with high storage
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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.15.1"
version = "0.15.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.cb9d4d0dde9e3512696114d4c133f44a553000466ce8f69daf78cd0029931985.wasm",
"tx_change_validator_commission.wasm": "tx_change_validator_commission.efbb295f81bb864ce77d3e4d8fa33091dab17408983f93ba85b02585eb451112.wasm",
"tx_ibc.wasm": "tx_ibc.8b256452c06d76552a2e6486da238af12330a04632f9550883e752a7ed953331.wasm",
"tx_init_account.wasm": "tx_init_account.ec984e33600be1ccaf42f6a4776cea0866e507eb77057300ca2f9ed08cff2a3f.wasm",
"tx_init_proposal.wasm": "tx_init_proposal.120e2f7918e845efd0d5c8bc37ff378cd48f3edc27a4f5c7b47a34d96d773959.wasm",
"tx_init_validator.wasm": "tx_init_validator.e397d8e777a76f77ffbe0875d9af0d1833339e952176774c25b1231063e22644.wasm",
"tx_reveal_pk.wasm": "tx_reveal_pk.ee8d2d96c3894f7406439614907be9b412244b2f0b5140814b59fbd7894d3a45.wasm",
"tx_transfer.wasm": "tx_transfer.dc792f4815056020a2a139e5a2fb9f9ab394b99ea33900e44912ce3aba544134.wasm",
"tx_unbond.wasm": "tx_unbond.6303e656b903c9e2162a545a941a7675a7f47388d08187779561a88c4efa1015.wasm",
"tx_update_vp.wasm": "tx_update_vp.083132487f3c3d23418916151cfc91cef77f2c3aad7cc1809ecc187651b696d8.wasm",
"tx_vote_proposal.wasm": "tx_vote_proposal.e977cefcbc886fde747ae95ed24d3be5d7f1fdbce1624a53c49f6549e751c5e3.wasm",
"tx_withdraw.wasm": "tx_withdraw.d9221c782e9850acbea39c274d0054258ae60fd1751f19ef2768065550e118cb.wasm",
"vp_implicit.wasm": "vp_implicit.4fae6c10a45bd56b1a058bb3f5bed81f9097caecb97f4ee3856a92beb4d96f51.wasm",
"vp_masp.wasm": "vp_masp.df06ad85c1b5a0572fecb338f2b26df7bf63d374df5ed8574f31f5aab34f3052.wasm",
"vp_testnet_faucet.wasm": "vp_testnet_faucet.50ab1e16a1c15a81508914005e259e88066e70dcdbd3996190409177caaa7035.wasm",
"vp_token.wasm": "vp_token.125a569c935a96074b4224d01d377530571d730870bcdab65351f75f2ebbde93.wasm",
"vp_user.wasm": "vp_user.68e98bab59b1369f07e7dc8298f13de97da3377905d036fbbe4a51c0c8deb4c9.wasm",
"vp_validator.wasm": "vp_validator.340f378dceda6e436de2bfa0518509940c5dc7cd69c7329f9b243477fabda344.wasm"
"tx_bond.wasm": "tx_bond.1fac5f79b23232f25370160cc71f3ae9c6e6b35a929d79922826d0853288be6a.wasm",
"tx_change_validator_commission.wasm": "tx_change_validator_commission.fc6b3d798cbda1833e1ca9be03fe0cab998048e0a829ae127ac1282b300e7f0e.wasm",
"tx_ibc.wasm": "tx_ibc.9a8291d8a249f19d17608d8c1ff5d13a8eea25b9cf1629299707553121ff78fc.wasm",
"tx_init_account.wasm": "tx_init_account.016e2ff541a09b2e4709d7d1b8d36d336412ccb57ab7390fdfb5726324dec8a5.wasm",
"tx_init_proposal.wasm": "tx_init_proposal.32b350ea3377b679bb81035bb19be9f0dd7d678e4de4e8ddb24f8050c5564ba5.wasm",
"tx_init_validator.wasm": "tx_init_validator.c400691869282c6302a2772e11ab086798bbbdcc60d497c3dc279096bd2ad4bd.wasm",
"tx_reveal_pk.wasm": "tx_reveal_pk.1981f185eae27de9135244b8238fd388206268e69dd511f246751aeaf8137b2a.wasm",
"tx_transfer.wasm": "tx_transfer.54cee6bef28d0ff33281788c124eaabf49486414a0a3eba1a66bfba33347c824.wasm",
"tx_unbond.wasm": "tx_unbond.486ed4ed2324c783a1715b94dc8dcda6fbb3ab7827d66945f8d9179de743fd79.wasm",
"tx_update_vp.wasm": "tx_update_vp.bfcf8672a62187858551fc914b675a9dbfd581d65daffbbbebcedcc28f7aa339.wasm",
"tx_vote_proposal.wasm": "tx_vote_proposal.9a170b3265c9d6e58dc4f7889c7426698f3f72a3797bbe4c5cbb21f24dfffb70.wasm",
"tx_withdraw.wasm": "tx_withdraw.b77e8e47d787dfc7a311f4bb4c4772573064e5cdd0251af2c4bc6b807ef4f362.wasm",
"vp_implicit.wasm": "vp_implicit.835dc08ccebdb356d0d757cd9813a56a40a98bc688f12c6f8fed74310b2c6d13.wasm",
"vp_masp.wasm": "vp_masp.5cd63d431ffde6c33f0e1fb2a85b940721a924656998e187fb10dc2064676b1d.wasm",
"vp_testnet_faucet.wasm": "vp_testnet_faucet.cf0b5c725807c847a271f72711aa4e1d059539cbc6e2d569d5e6e9fcc14253f1.wasm",
"vp_token.wasm": "vp_token.0b0152e2974bfa3f15d3fc30ee8d9687b5418055c67314cedbf50ce972b763c5.wasm",
"vp_user.wasm": "vp_user.0ed07e207a6e1f29fdf113a39f9032d0cbec04a6e92a040970d96bb9c3ddbed8.wasm",
"vp_validator.wasm": "vp_validator.bfa5e9a46f6d722a16f2ded4bb6c05dde382e6de6e882847714720804b2c7661.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.15.1"
version = "0.15.2"

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

0 comments on commit 0060e0f

Please sign in to comment.