Skip to content

Commit 4fbdad4

Browse files
authored
Prepare release v0.13.0 (#1015)
* chore: Update CHANGELOG * chore: Bump version to 0.13.0 * chore: Update Cargo.lock * chore: Update version in docker compose files
1 parent 650b339 commit 4fbdad4

File tree

30 files changed

+68
-57
lines changed

30 files changed

+68
-57
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.13.0] - 2025-01-06
11+
1012
### Fixed
1113

1214
- **Mempool**: Inside the transaction and snark pool reducers, only broadcast locally injected transactions and producer snarks. Libp2p layer takes care of diffs received from gossip already.
15+
- **P2P**: Don't forget the initial peers list.
16+
- WebRTC connection leaks.
17+
- zkApp transaction proofs are now verified on a separate thread.
18+
- Sometimes produced blocks were broadcasted too early.
19+
- `OneOrTwo::zip` never panics now, on failure it returns an error.
1320

1421
### Changed
1522

1623
- On native, use jemalloc as the default allocator.
24+
- Allocations reduced considerably by using stack-allocated bignums in the VRF evaluator.
25+
- The same thread is now reused to verify all block proofs.
26+
- `RUST_BACKTRACE` is always set to `full` now.
1727

1828
## [0.12.0] - 2024-12-04
1929

@@ -338,7 +348,8 @@ First public release.
338348
- 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.
339349
- Web-based frontend for the node.
340350

341-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.12.0...develop
351+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.13.0...develop
352+
[0.13.0]: https://github.com/openmina/openmina/compare/v0.12.0...v0.13.0
342353
[0.12.0]: https://github.com/openmina/openmina/compare/v0.11.0...v0.12.0
343354
[0.11.0]: https://github.com/openmina/openmina/compare/v0.10.3...v0.11.0
344355
[0.10.3]: https://github.com/openmina/openmina/compare/v0.10.0...v0.10.3

Cargo.lock

Lines changed: 27 additions & 27 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.12.0"
3+
version = "0.13.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.12.0"
3+
version = "0.13.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.12.0"
3+
version = "0.13.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.12.0
4+
image: openmina/openmina:0.13.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.12.0
15+
image: openmina/frontend:0.13.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.12.0"
3+
version = "0.13.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.12.0"
3+
version = "0.13.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.12.0"
3+
version = "0.13.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.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

0 commit comments

Comments
 (0)