Skip to content

Commit 6dc1612

Browse files
committed
Namada 0.37.0
1 parent e774efd commit 6dc1612

31 files changed

+186
-168
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.changelog/v0.37.0/summary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Namada 0.37.0 is a minor release that adds replay protection entries to consensus and enables merklizing data without diffs.

CHANGELOG.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# CHANGELOG
22

3+
## v0.37.0
4+
5+
Namada 0.37.0 is a minor release that adds replay protection entries to consensus and enables merklizing data without diffs.
6+
7+
### FEATURES
8+
9+
- Enable to write data to be updated in the subspace and Merkle tree, but not to
10+
be updated in diffs ([\#3293](https://github.com/anoma/namada/issues/3293))
11+
12+
### IMPROVEMENTS
13+
14+
- Revert IBC transaction wasm not to use host_env function.
15+
But it required to enable floating-point support again
16+
([\#1831](https://github.com/anoma/namada/issues/1831))
17+
- Audit TODOs in the codebase.
18+
([\#3234](https://github.com/anoma/namada/pull/3234))
19+
- Replay protection entries need to be verifiable and thus should contribute to the app hash. This PR makes
20+
a cryptographic commitment to all replay protection entries (the root of some implicit merkle tree) which is itself
21+
merklized. ([\#3284](https://github.com/anoma/namada/pull/3284))
22+
323
## v0.36.1
424

525
Namada 0.36.1 is a patch release that updates the Rust toolchain to 1.78.0 fixes a couple minor issues with the last minor release.
@@ -324,9 +344,6 @@ Namada 0.33.0 is a minor release that contains various new features, improvement
324344

325345
- move query_ibc_tokens and lookup_ibc_token_alias to sdk
326346
([\#2729](https://github.com/anoma/namada/issues/2729))
327-
328-
### SDK
329-
330347
- Add a new method to the sdk to change a validator consensus key.
331348
([\#3037](https://github.com/anoma/namada/pull/3037))
332349
- Improve the function to update an enstablished address via the sdk.

Cargo.lock

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ keywords = ["blockchain", "privacy", "crypto", "protocol", "network"]
5757
license = "GPL-3.0"
5858
readme = "README.md"
5959
repository = "https://github.com/anoma/namada"
60-
version = "0.36.1"
60+
version = "0.37.0"
6161

6262
[workspace.dependencies]
6363
ark-bls12-381 = {version = "0.3"}

0 commit comments

Comments
 (0)