Skip to content

Commit 908286f

Browse files
authored
Merge pull request #172 from openmina/prepare-release/v0.0.1
Prepare release v0.0.1
2 parents 202e9b9 + ac26e6c commit 908286f

File tree

13 files changed

+51
-21
lines changed

13 files changed

+51
-21
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.0.1] - 2023-12-22
11+
12+
First public release.
13+
14+
### Added
15+
16+
- 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.
17+
- Web-based frontend for the node.
18+
19+
[unreleased]: https://github.com/openmina/openmina/compare/v0.0.1...develop
20+
[0.0.1]: https://github.com/openmina/openmina/releases/tag/v0.0.1

Cargo.lock

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

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# The Open Mina Node
33

4-
[![Openmina Daily](https://github.com/openmina/openmina/actions/workflows/daily.yaml/badge.svg)](https://github.com/openmina/openmina/actions/workflows/daily.yaml)
4+
[![Openmina Daily](https://github.com/openmina/openmina/actions/workflows/daily.yaml/badge.svg)](https://github.com/openmina/openmina/actions/workflows/daily.yaml) [![Changelog][changelog-badge]][changelog] [![release-badge]][release-link] [![Apache licensed]][Apache link]
55

66
The Open Mina Node is a Mina node written completely in Rust and capable of verifying blocks of transactions, producing blocks and generating SNARKs.
77

@@ -172,3 +172,13 @@ Open your browser and navigate to [http://localhost:4200](http://localhost:4200)
172172
- [Substack](https://openmina.substack.com/)
173173
- [Medium](https://medium.com/openmina)
174174
- [Twitter](https://twitter.com/viable_systems)
175+
176+
177+
[changelog]: ./CHANGELOG.md
178+
[changelog-badge]: https://img.shields.io/badge/changelog-Changelog-%23E05735
179+
180+
[release-badge]: https://img.shields.io/github/v/release/openmina/openmina
181+
[release-link]: https://github.com/openmina/openmina/releases/latest
182+
183+
[Apache licensed]: https://img.shields.io/badge/license-Apache_2.0-blue.svg
184+
[Apache link]: https://github.com/openmina/openmina/blob/master/LICENSE

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.0.1"
44
edition = "2021"
55

66
[[bin]]

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.0.1"
44
edition = "2021"
55

66
[lib]

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.0.1"
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.0.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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.0.1"
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.0.1"
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.0.1"
44
edition = "2021"
55
license = "Apache-2.0"
66

0 commit comments

Comments
 (0)