Skip to content

Commit ffb6efc

Browse files
authored
Merge pull request #727 from openmina/develop
Merge `develop` to `main`
2 parents 93d86b5 + 7835e49 commit ffb6efc

File tree

175 files changed

+5271
-4140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+5271
-4140
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.14] - 2024-09-18
11+
12+
### Fixed
13+
14+
- Correctly show transaction fee values in the frontend.
15+
- Make sure that incorrectly encoded finite field values are handled properly.
16+
1017
## [0.8.13] - 2024-09-18
1118

1219
### Fixed
@@ -247,7 +254,8 @@ First public release.
247254
- Alpha version of the node which can connect and syncup to the berkeleynet network, and keep applying new blocks to maintain consensus state and ledger up to date.
248255
- Web-based frontend for the node.
249256

250-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.8.13...develop
257+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.8.14...develop
258+
[0.8.14]: https://github.com/openmina/openmina/releases/tag/v0.8.13...v0.8.14
251259
[0.8.13]: https://github.com/openmina/openmina/releases/tag/v0.8.3...v0.8.13
252260
[0.8.3]: https://github.com/openmina/openmina/releases/tag/v0.8.2...v0.8.3
253261
[0.8.2]: https://github.com/openmina/openmina/releases/tag/v0.8.1...v0.8.2

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ members = [
3535
resolver = "2"
3636

3737
[workspace.dependencies]
38-
mina-p2p-messages = { path = "mina-p2p-messages", features = ["hashing"] }
38+
mina-p2p-messages = { path = "mina-p2p-messages" }
3939
ledger = { path = "ledger", package = "mina-tree" }
4040
mina-hasher = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes-rampup4-vrf" }
4141
mina-signer = { git = "https://github.com/openmina/proof-systems", branch = "ledger-newtypes-rampup4-vrf" }
@@ -66,13 +66,12 @@ incremental = false
6666
codegen-units = 1
6767

6868
[patch.crates-io]
69-
ark-ff = { git = "https://github.com/openmina/algebra", branch = "openmina" }
70-
ark-ec = { git = "https://github.com/openmina/algebra", branch = "openmina" }
71-
ark-poly = { git = "https://github.com/openmina/algebra", branch = "openmina" }
72-
ark-serialize = { git = "https://github.com/openmina/algebra", branch = "openmina" }
69+
ark-ff = { git = "https://github.com/openmina/algebra", rev = "938e0ff" } # branch: fix-openmina
70+
ark-ec = { git = "https://github.com/openmina/algebra", rev = "938e0ff" } # branch: fix-openmina
71+
ark-poly = { git = "https://github.com/openmina/algebra", rev = "938e0ff" } # branch: fix-openmina
72+
ark-serialize = { git = "https://github.com/openmina/algebra", rev = "938e0ff" } # branch: fix-openmina
7373

7474
[profile.test.package."*"]
7575
opt-level = 3
7676
debug-assertions = true
7777
overflow-checks = false
78-

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cli"
3-
version = "0.8.13"
3+
version = "0.8.14"
44
edition = "2021"
55
license = "Apache-2.0"
66

cli/replay_dynamic_effects/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "replay_dynamic_effects"
3-
version = "0.8.13"
3+
version = "0.8.14"
44
edition = "2021"
55
license = "Apache-2.0"
66

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmina-core"
3-
version = "0.8.13"
3+
version = "0.8.14"
44
edition = "2021"
55
license = "Apache-2.0"
66

@@ -24,7 +24,7 @@ openmina-fuzzer = { path = "../fuzzer", optional = true }
2424
mina-hasher = { workspace = true }
2525
mina-p2p-messages = { workspace = true }
2626
hex = "0.4.3"
27-
ark-ff = { git = "https://github.com/openmina/algebra", branch = "openmina", features = [ "parallel", "asm", "std" ] }
27+
ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std" ] }
2828

2929
[target.'cfg(not(target_family = "wasm"))'.dependencies]
3030
redux = { workspace = true, features=["serializable_callbacks"] }

0 commit comments

Comments
 (0)