Skip to content

Commit

Permalink
Namada 0.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Jan 17, 2024
1 parent 43f93d6 commit f7532c2
Show file tree
Hide file tree
Showing 39 changed files with 159 additions and 123 deletions.
6 changes: 6 additions & 0 deletions .changelog/v0.30.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Namada 0.30.1 is a patch release that contains various bug fixes for MASP, IBC, the shell and crates refactor (the core has been subdivided into many smaller crates).
<!--
Add a summary for the release here.
If you don't change this message, or if this file is empty, the release
will not be created. -->
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# CHANGELOG

## v0.30.1

Namada 0.30.1 is a patch release that contains various bug fixes for MASP, IBC, the shell and crates refactor (the core has been subdivided into many smaller crates).

### IMPROVEMENTS

- Refactored the core crate into many smaller crates.
([\#2312](https://github.com/anoma/namada/pull/2312))
- Strengthened the checks in the MASP VP. Allow viewing and spending of
unconvertible MASP notes ([\#2371](https://github.com/anoma/namada/pull/2371))
- Refactored the fee validation process.
([\#2382](https://github.com/anoma/namada/pull/2382))
- Updated block validation to require a valid timestamp.
([\#2383](https://github.com/anoma/namada/pull/2383))
- Moved Rust crates into a crates sub-dir.
([\#2386](https://github.com/anoma/namada/pull/2386))
- Ibc transactions can be rewrapped in case of a gas error.
([\#2395](https://github.com/anoma/namada/pull/2395))

### SDK

- Added some more RPC methods for computing governance proposal
results, query pgf parameters and total supply of a token.
([\#2400](https://github.com/anoma/namada/pull/2400))

### TESTING

- Fix E2E test for PGF over IBC by waiting before checking the balance
([\#2398](https://github.com/anoma/namada/issues/2398))

## v0.30.0

Namada 0.30.0 is a minor release that primarily upgrades the MASP and WASM VM memory functionality in addition to smaller upgrades to other Namada modules.
Expand Down
62 changes: 31 additions & 31 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ keywords = ["blockchain", "privacy", "crypto", "protocol", "network"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/anoma/namada"
version = "0.30.0"
version = "0.30.1"

[workspace.dependencies]
ark-bls12-381 = {version = "0.3"}
Expand Down
2 changes: 1 addition & 1 deletion crates/account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ serde.workspace = true
[dev-dependencies]
namada_core = { path = "../core", features = ["testing"] }

proptest.workspace = true
proptest.workspace = true
2 changes: 1 addition & 1 deletion crates/gas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ thiserror.workspace = true

[dev-dependencies]
assert_matches.workspace = true
proptest.workspace = true
proptest.workspace = true
2 changes: 1 addition & 1 deletion crates/governance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ tracing.workspace = true
[dev-dependencies]
namada_core = {path = "../core", default-features = false, features = ["testing"]}

proptest.workspace = true
proptest.workspace = true
2 changes: 1 addition & 1 deletion crates/ibc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ tracing.workspace = true

[dev-dependencies]
ibc-testkit.workspace = true
proptest.workspace = true
proptest.workspace = true
2 changes: 1 addition & 1 deletion crates/merkle_tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ thiserror.workspace = true
[dev-dependencies]
assert_matches.workspace = true
proptest.workspace = true
itertools.workspace = true
itertools.workspace = true
2 changes: 1 addition & 1 deletion crates/shielded_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ namada_state = { path = "../state", features = ["testing"] }

proptest.workspace = true
rayon.workspace = true
test-log.workspace = true
test-log.workspace = true
2 changes: 1 addition & 1 deletion crates/tx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ proptest.workspace = true
rand.workspace = true

[build-dependencies]
tonic-build.workspace = true
tonic-build.workspace = true
Loading

0 comments on commit f7532c2

Please sign in to comment.