Skip to content

Commit 72fd9e9

Browse files
authored
Merge pull request #1593 from o1-labs/1590-modify-changelog-for-the-v0180-release
Changelog and docker build fix
2 parents 9d36309 + 8729bce commit 72fd9e9

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.idea/vcs.xml

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

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,8 @@ docker-build-debugger: ## Build debugger Docker image
384384

385385
.PHONY: docker-build-frontend
386386
docker-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
400403
docker-build-fuzzing: ## Build fuzzing Docker image

0 commit comments

Comments
 (0)