Skip to content

Commit 3a7cd22

Browse files
authored
Prepare release v0.16.0 (#1134)
* chore: Update CHANGELOG * chore: Bump version to 0.16.0 * chore: Update Cargo.lock * chore: Update version in docker compose files
1 parent 04f265e commit 3a7cd22

File tree

33 files changed

+79
-63
lines changed

33 files changed

+79
-63
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.16.0] - 2025-04-04
11+
12+
### Added
13+
14+
- **GraphQL**: More queries (snark pool, pending snark work, genesis block, ledger status).
15+
16+
### Changed
17+
18+
- **GraphQL**: Added more fields to `daemonStatus` query˙
19+
20+
### Fixed
21+
22+
- **GraphQL**: Some issues with accounts.
23+
- **Block Producer**: Corner case that caused the won slot search to sometimes be interrupted at epoch bounds.
24+
1025
## [0.15.0] - 2025-03-13
1126

1227
### Added
@@ -394,7 +409,8 @@ First public release.
394409
- 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.
395410
- Web-based frontend for the node.
396411

397-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.15.0...develop
412+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.16.0...develop
413+
[0.15.0]: https://github.com/openmina/openmina/compare/v0.15.0...v0.16.0
398414
[0.15.0]: https://github.com/openmina/openmina/compare/v0.14.0...v0.15.0
399415
[0.14.0]: https://github.com/openmina/openmina/compare/v0.13.0...v0.14.0
400416
[0.13.0]: https://github.com/openmina/openmina/compare/v0.12.0...v0.13.0

Cargo.lock

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

0 commit comments

Comments
 (0)