File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## [ 0.18.0] - 2025-11-04
11+
1012### OCaml node
1113
1214- Update the CI and code to compare with the latest release 3.3.0-alpha1-6929a7e
@@ -156,7 +158,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156158 correctly on macOS by removing conflicting ` -e ` flag in sed command
157159 ([ #1573 ] ( https://github.com/o1-labs/mina-rust/pull/1573 ) )
158160
159- ## v0 .17.0
161+ ## [ 0 .17.0] - 2025-04-08
160162
161163### OCaml node
162164
@@ -675,7 +677,9 @@ First public release.
675677- 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.
676678- Web-based frontend for the node.
677679
678- [ Unreleased ] : https://github.com/openmina/openmina/compare/v0.16.0...develop
680+ [ Unreleased ] : https://github.com/openmina/openmina/compare/v0.18.0...develop
681+ [ 0.18.0 ] : https://github.com/openmina/openmina/compare/v0.17.0...v0.18.0
682+ [ 0.17.0 ] : https://github.com/openmina/openmina/compare/v0.16.0...v0.17.0
679683[ 0.16.0 ] : https://github.com/openmina/openmina/compare/v0.15.0...v0.16.0
680684[ 0.15.0 ] : https://github.com/openmina/openmina/compare/v0.14.0...v0.15.0
681685[ 0.14.0 ] : https://github.com/openmina/openmina/compare/v0.13.0...v0.14.0
Original file line number Diff line number Diff line change @@ -384,6 +384,8 @@ docker-build-debugger: ## Build debugger Docker image
384384
385385.PHONY : docker-build-frontend
386386docker-build-frontend : # # Build frontend Docker image
387+ @echo " Generating .env.docker file..."
388+ @bash ./frontend/docker/generate-docker-env.sh
387389 @ARCH=$$(uname -m ) ; \
388390 case $$ ARCH in \
389391 x86_64) PLATFORM=" linux/amd64" ;; \
@@ -394,7 +396,8 @@ docker-build-frontend: ## Build frontend Docker image
394396 docker buildx build \
395397 --platform $$ PLATFORM \
396398 --tag $(DOCKER_ORG ) /mina-rust-frontend:$(GIT_COMMIT ) \
397- frontend/
399+ --file ./frontend/Dockerfile \
400+ ./
398401
399402.PHONY : docker-build-fuzzing
400403docker-build-fuzzing : # # Build fuzzing Docker image
You can’t perform that action at this time.
0 commit comments