Skip to content

Commit ca70746

Browse files
authored
Merge pull request #646 from openmina/prepare-release/v0.8.2
Prepare release v0.8.2
2 parents 0f12044 + a583177 commit ca70746

File tree

28 files changed

+67
-53
lines changed

28 files changed

+67
-53
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.2] - 2024-09-06
11+
12+
### Fixed
13+
14+
- Include circuit blobs in docker images, required for block production.
15+
- Add missing bounds to ZkAppUri and TokenSymbol fields.
16+
- Various stability improvements to make sure the node will not crash in certain circumstances.
17+
18+
### Changed
19+
20+
- Root snarked ledger re-syncs now reuse the previously in-progress root snarked ledger instead of starting again from the next-epoch ledger.
21+
- Added `--libp2p-keypair=<path to json>` flag to specify encrypted secret key (with passphrase from `MINA_LIBP2P_PASS` environment variable).
22+
1023
## [0.8.1] - 2024-09-02
1124

1225
### Fixed
@@ -215,7 +228,8 @@ First public release.
215228
- 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.
216229
- Web-based frontend for the node.
217230

218-
[Unreleased]: https://github.com/openmina/openmina/compare/v0.8.1...develop
231+
[Unreleased]: https://github.com/openmina/openmina/compare/v0.8.2...develop
232+
[0.8.2]: https://github.com/openmina/openmina/releases/tag/v0.8.1...v0.8.2
219233
[0.8.1]: https://github.com/openmina/openmina/releases/tag/v0.8.0...v0.8.1
220234
[0.8.0]: https://github.com/openmina/openmina/releases/tag/v0.7.0...v0.8.0
221235
[0.7.0]: https://github.com/openmina/openmina/releases/tag/v0.6.0...v0.7.0

Cargo.lock

Lines changed: 25 additions & 25 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.8.1"
3+
version = "0.8.2"
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.1"
3+
version = "0.8.2"
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.8.1"
3+
version = "0.8.2"
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.8.1
4+
image: openmina/openmina:0.8.2
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.8.1-producer-demo
15+
image: openmina/frontend:0.8.2-producer-demo
1616
# build:
1717
# context: .
1818
# dockerfile: Dockerfile_FE

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

0 commit comments

Comments
 (0)