Skip to content

Commit e3cb69e

Browse files
authored
Merge pull request #1052 from openmina/prepare-release/v0.14.0
Prepare Release v0.14.0
2 parents eef3475 + 65fd24f commit e3cb69e

File tree

32 files changed

+76
-61
lines changed

32 files changed

+76
-61
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.14.0] - 2025-01-31
11+
12+
### Changed
13+
14+
- **Rust Toolchain**: Updated the minimum required Rust toolchain to version 1.84.
15+
- **Proofs**: Optimizations (MSM, field inversion) that speed up proof production.
16+
17+
### Fixed
18+
19+
- **P2P**: Correct handling of yamux windows limits
20+
- **P2P**: Wait until full validation is complete before broadcasting blocks.
21+
- **WebRTC/P2P**: Handle propagation of messages received from the WebRTC network to libp2p's gossip network (blocks, snarks and transactions).
22+
- **Transaction pool**: Fixed checks for deep account updates when pre-validating transactions.
23+
1024
### Added
1125

1226
- **Archive mode**: Added support for archive mode, which allows the node to connect to an archiver process and store node data in a database.
@@ -352,7 +366,8 @@ First public release.
352366
- 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.
353367
- Web-based frontend for the node.
354368

355-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.13.0...develop
369+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.14.0...develop
370+
[0.14.0]: https://github.com/openmina/openmina/compare/v0.13.0...v0.14.0
356371
[0.13.0]: https://github.com/openmina/openmina/compare/v0.12.0...v0.13.0
357372
[0.12.0]: https://github.com/openmina/openmina/compare/v0.11.0...v0.12.0
358373
[0.11.0]: https://github.com/openmina/openmina/compare/v0.10.3...v0.11.0

Cargo.lock

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

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.13.0"
3+
version = "0.14.0"
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.13.0"
3+
version = "0.14.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

core/Cargo.toml

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

docker-compose.local.producers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
local-producer-cluster:
33
container_name: local-producer-cluster
4-
image: openmina/openmina:0.13.0
4+
image: openmina/openmina:0.14.0
55
environment:
66
- RUST_BACKTRACE=1
77
entrypoint: ["openmina-node-testing", "scenarios-generate", "--name", "simulation-small-forever-real-time"]
@@ -12,7 +12,7 @@ services:
1212

1313
frontend:
1414
container_name: frontend
15-
image: openmina/frontend:0.13.0
15+
image: openmina/frontend:0.14.0
1616
environment:
1717
OPENMINA_FRONTEND_ENVIRONMENT: block-producers
1818
ports:

fuzzer/Cargo.toml

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

ledger/Cargo.toml

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

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmina-macros"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
authors = [ "Alexander Koptelov <[email protected]>" ]

node/Cargo.toml

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

0 commit comments

Comments
 (0)