Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.14] - 2024-09-18

### Fixed

- Correctly show transaction fee values in the frontend.
- Make sure that incorrectly encoded finite field values are handled properly.

## [0.8.13] - 2024-09-18

### Fixed
Expand Down Expand Up @@ -247,7 +254,8 @@ First public release.
- 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.
- Web-based frontend for the node.

[Unreleased]: https://github.com/openmina/openmina/compare/v0.8.13...develop
[Unreleased]: https://github.com/openmina/openmina/compare/v0.8.14...develop
[0.8.14]: https://github.com/openmina/openmina/releases/tag/v0.8.13...v0.8.14
[0.8.13]: https://github.com/openmina/openmina/releases/tag/v0.8.3...v0.8.13
[0.8.3]: https://github.com/openmina/openmina/releases/tag/v0.8.2...v0.8.3
[0.8.2]: https://github.com/openmina/openmina/releases/tag/v0.8.1...v0.8.2
Expand Down
66 changes: 34 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ members = [
resolver = "2"

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

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

[profile.test.package."*"]
opt-level = 3
debug-assertions = true
overflow-checks = false

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.8.13"
version = "0.8.14"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion cli/replay_dynamic_effects/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "replay_dynamic_effects"
version = "0.8.13"
version = "0.8.14"
edition = "2021"
license = "Apache-2.0"

Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmina-core"
version = "0.8.13"
version = "0.8.14"
edition = "2021"
license = "Apache-2.0"

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

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