Skip to content

Commit

Permalink
Namada 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juped committed May 17, 2023
1 parent e296df4 commit be403f7
Show file tree
Hide file tree
Showing 33 changed files with 84 additions and 67 deletions.
2 changes: 2 additions & 0 deletions .changelog/v0.16.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Namada 0.16.0 is a regular release focused on providing the Namada SDK
to developers.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## v0.16.0

Namada 0.16.0 is a regular release focused on providing the Namada SDK
to developers.

### DOCS

- Added page table-of-contents via mdbook-pagetoc plugin for the developer
documentation. ([#1275](https://github.com/anoma/namada/pull/1275))

### IMPROVEMENTS

- Bump RocksDB crate to 0.21.0 to address compilation errors on certain C++
toolchains. ([#1366](https://github.com/anoma/namada/pull/1366))

## v0.15.3

Namada 0.15.3 is a maintenance release addressing the creation of
Expand Down Expand Up @@ -33,7 +48,7 @@ a major improvement to storage usage.

### 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`.
- Changed the default base directory. On linux, the default path will be `$XDG_DATA_HOME/namada`, on OSX it will be `$HOME/Library/Application Support/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))
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.3"
version = "0.16.0"
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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

# 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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.3"
version = "0.16.0"

[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.88a929425f99c55daa19b61fe5f0705c1fde945ebb998e98ed1361c9a66d5b37.wasm",
"tx_change_validator_commission.wasm": "tx_change_validator_commission.08cb964e182c6403f8261ce0c381d2b24683310e62fc6412c3379e8ed2f96db1.wasm",
"tx_ibc.wasm": "tx_ibc.d1dc1ca394515105d07e7f0da9d4c2e48f27bc4cedd71300a49b2b67868dfde0.wasm",
"tx_init_account.wasm": "tx_init_account.a09ca05a0e67e20efb9cba6e1af07999ff4969b04126fbac049dcde336d2d2a0.wasm",
"tx_init_proposal.wasm": "tx_init_proposal.bab091b3ea111ae57ae9985a48e90f901776d18e08feb91cd9ff3546f89b01a2.wasm",
"tx_init_validator.wasm": "tx_init_validator.c9dcd475043a76e02aeaa649ea1175f95d9b56030acefb0c8d94d68fc9b6945e.wasm",
"tx_reveal_pk.wasm": "tx_reveal_pk.102b68342cccd7f41a38b83cdb2ac6f208fe7289a57adc91e28196efdf3f5805.wasm",
"tx_transfer.wasm": "tx_transfer.7e138d16b6abb093427bba152097e6558696f61b08be7d659b7d899218393930.wasm",
"tx_unbond.wasm": "tx_unbond.bf3bfab82fd5808cfb51f6e10f01c11641a8e05d57007a908287647302a01dca.wasm",
"tx_update_vp.wasm": "tx_update_vp.4b9950d863f2d764e33396e17edbc06b7a2c1e6b47eb2e09819ab3e646cdb518.wasm",
"tx_vote_proposal.wasm": "tx_vote_proposal.e6c166d7188cfacdc5ea0f62095c8a36f6e2eb790994d42b38f1d2959d91f944.wasm",
"tx_withdraw.wasm": "tx_withdraw.ab82116c3f0639f31d8bdb946cf2311dafddae1fc277c3942e30c75be3812fd7.wasm",
"vp_implicit.wasm": "vp_implicit.fc18b5ad2a884670dfb17cdf72ae7c5159fb31a9615f492992ab39aa5807818a.wasm",
"vp_masp.wasm": "vp_masp.d25b2ceed9e016c6ec0b39dfe6d9d7b1a0cfd2828f78bb27e0abdac46e87aee6.wasm",
"vp_testnet_faucet.wasm": "vp_testnet_faucet.9058366ab6ecdea0cbd720b7be550a3381d98b0b84a331c9b6f84978bf774ff7.wasm",
"vp_token.wasm": "vp_token.05b4dc03a9f0d64045df07e99d0ffdcacbe2e9e966eef8cbcfe025b7ccdb3b55.wasm",
"vp_user.wasm": "vp_user.3bc306a99e30a7847152f82002dd2faf25ff0f64d1100efa6ccad576705dd968.wasm",
"vp_validator.wasm": "vp_validator.112db733a8a5e497987b087b842105ea9b93e1644b6afdb1b8aaac0cfef3b66c.wasm"
"tx_bond.wasm": "tx_bond.4861430f580e9973c96e99f615d81950c088317768d1dbdb1088ca1889db13a0.wasm",
"tx_change_validator_commission.wasm": "tx_change_validator_commission.a6013f149f61e1d80b6858db12c6203b6dd78443c2d3006527e38617388337ae.wasm",
"tx_ibc.wasm": "tx_ibc.5adb9e98dd7930c6442eff946cec0eec50a447873a6e97cd79f1552639c0ca9a.wasm",
"tx_init_account.wasm": "tx_init_account.139590861c2c86459acbccf058ba7147be83bd7d90f914ac605dd71077937c5d.wasm",
"tx_init_proposal.wasm": "tx_init_proposal.8449c431543e02466d9284df81317a4e4cd451772a43a5f45062a144b2a41424.wasm",
"tx_init_validator.wasm": "tx_init_validator.a38b2664989e7e87f9016690b415b77e6b0f36443d46a947b04f809efc9caa59.wasm",
"tx_reveal_pk.wasm": "tx_reveal_pk.69aa3ad6305a26cbba8667efa923389afbb6db6feb025e7c88eac8f413c9e36b.wasm",
"tx_transfer.wasm": "tx_transfer.e68e6cb3336962c1f3e5d63054fb4e5fbca02b12125a71179aa86169e12174d7.wasm",
"tx_unbond.wasm": "tx_unbond.53119371c8f4b20424774d9312fa50333c4f8250b6018384142e0e8553009a31.wasm",
"tx_update_vp.wasm": "tx_update_vp.24b8501c7df4ee482fbab8411a5e8666d36267302783998e6dd3ccc92a2eb802.wasm",
"tx_vote_proposal.wasm": "tx_vote_proposal.45d73369f04f4261de0a89f1c6e398f26aed18ee921832bcfe845de169e8d21f.wasm",
"tx_withdraw.wasm": "tx_withdraw.f2acfee621b4805ef092143195067728312d60d30907d3f82be850ef295092d3.wasm",
"vp_implicit.wasm": "vp_implicit.5f4c7920478e2db6db63765f9af9800d2d9c164728e3eb48360a2617e173aefb.wasm",
"vp_masp.wasm": "vp_masp.f17ee14abb38853066fada237164faaf6cf49a0c121b4b2e9cfd48030c17d620.wasm",
"vp_testnet_faucet.wasm": "vp_testnet_faucet.79f768c6d0dd20c4b38b982afdc72645d319d94abe4c577e99b086a24ba94984.wasm",
"vp_token.wasm": "vp_token.b09a3aa221e995e82fe58082bfa428cdde161fdc444f17e135800b21b3c7d1cb.wasm",
"vp_user.wasm": "vp_user.c5a15735bfd5cf5dfc8019805f36e8438b68b2c1c1ba653518d465c7159ef5d3.wasm",
"vp_validator.wasm": "vp_validator.12d8726feaf1c9a3465be9f25ce6d3e2599cb79ab1f09df656326f73d1a577ff.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.3"
version = "0.16.0"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion wasm/vp_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 = "vp_template"
resolver = "2"
version = "0.15.3"
version = "0.16.0"

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

0 comments on commit be403f7

Please sign in to comment.