From 4bd91ae83e48bb621c769664accd398d70fac367 Mon Sep 17 00:00:00 2001 From: JohnySigma Date: Sat, 25 Oct 2025 12:19:31 +0300 Subject: [PATCH 1/2] Fix: Use config file instead of data directory in systemd service --- scripts/install-debros-network.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-debros-network.sh b/scripts/install-debros-network.sh index 82e04e1..3584f6d 100755 --- a/scripts/install-debros-network.sh +++ b/scripts/install-debros-network.sh @@ -430,7 +430,7 @@ create_systemd_service() { fi sudo systemctl daemon-reload log "Creating new systemd service..." - local exec_start="$INSTALL_DIR/bin/node -data $INSTALL_DIR/data/node" + local exec_start="$INSTALL_DIR/bin/node --config $INSTALL_DIR/configs/node.yaml" cat > /tmp/debros-node.service << EOF [Unit] Description=DeBros Network Node From 802f058345b30e3136403db3d67a6eb98768032e Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Sat, 25 Oct 2025 13:07:04 +0300 Subject: [PATCH 2/2] chore: update CHANGELOG and version for v0.51.9-beta release - Added new entries to CHANGELOG.md for the one-command `make dev` target and full stack initialization features. - Updated version in Makefile from 0.51.7-beta to 0.51.9-beta to reflect the latest changes. --- CHANGELOG.md | 8 ++++++++ Makefile | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4bf482..958cecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ The format is based on [Keep a Changelog][keepachangelog] and adheres to [Semant ### Added +### Changed + +### Deprecated + +## [0.51.9] - 2025-10-25 + +### Added + - One-command `make dev` target to start full development stack (bootstrap + node2 + node3 + gateway in background) - New `network-cli config init` (no --type) generates complete development stack with all configs and identities - Full stack initialization with auto-generated peer identities for bootstrap and all nodes diff --git a/Makefile b/Makefile index 4fa79e3..1e5d346 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ test-e2e: .PHONY: build clean test run-node run-node2 run-node3 run-example deps tidy fmt vet lint clear-ports -VERSION := 0.51.7-beta +VERSION := 0.51.9-beta COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ) LDFLAGS := -X 'main.version=$(VERSION)' -X 'main.commit=$(COMMIT)' -X 'main.date=$(DATE)'