Skip to content

Commit d514b13

Browse files
authored
Merge pull request #247 from openmina/prepare-release/v0.2.0
Prepare release v0.2.0
2 parents d54ba57 + 1da4fff commit d514b13

File tree

16 files changed

+48
-29
lines changed

16 files changed

+48
-29
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0] - 2024-02-29
11+
12+
### Changed
13+
14+
- Default Rust toolchain switched to stable channel (as of 1.75).
15+
- Internal refactoring to how leaf actions in the state machine are organized.
16+
17+
### Fixed
18+
19+
- Node can now connect to the current berkeleynet after updates to:
20+
- Wire type definitions.
21+
- Verification, proving and circuits.
22+
- Ledger and transaction application logic.
23+
24+
### Added
25+
26+
- Ledger tests on CI.
27+
1028
## [0.1.0] - 2024-02-02
1129

1230
### Fixed
@@ -34,6 +52,7 @@ First public release.
3452
- 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.
3553
- Web-based frontend for the node.
3654

37-
[unreleased]: https://github.com/openmina/openmina/compare/v0.1.0...develop
55+
[unreleased]: https://github.com/openmina/openmina/compare/v0.2.0...develop
56+
[0.2.0]: https://github.com/openmina/openmina/releases/tag/v0.1.0...v0.2.0
3857
[0.1.0]: https://github.com/openmina/openmina/releases/tag/v0.0.1...v0.1.0
3958
[0.0.1]: https://github.com/openmina/openmina/releases/tag/v0.0.1

Cargo.lock

Lines changed: 13 additions & 13 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.1.0"
3+
version = "0.2.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.1.0"
3+
version = "0.2.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.1.0"
3+
version = "0.2.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.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

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

node/invariants/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-node-invariants"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

node/native/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-node-native"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

node/testing/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-node-testing"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66

0 commit comments

Comments
 (0)