From 6d6c73dc339aeeff2c2459ae3efdce68a5168b62 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Wed, 22 Oct 2025 07:18:21 +0300 Subject: [PATCH] Changed versions and changelog --- CHANGELOG.md | 19 +++++++++++++++++++ Makefile | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec08ed2..2ba6f0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,25 @@ The format is based on [Keep a Changelog][keepachangelog] and adheres to [Semant ### Fixed +## [0.51.1] - 2025-10-22 + +### Added + +### Changed + +- Changed the configuration file for run-node3 to use node3.yaml. +- Modified select_data_dir function to require a hasConfigFile parameter and added error handling for missing configuration. +- Updated main function to pass the config path to select_data_dir. +- Introduced a peer exchange protocol in the discovery package, allowing nodes to request and exchange peer information. +- Refactored peer discovery logic in the node package to utilize the new discovery manager for active peer exchange. + +### Deprecated + +### Removed +- Cleaned up unused code related to previous peer discovery methods. + +### Fixed + ## [0.51.0] - 2025-09-26 ### Added diff --git a/Makefile b/Makefile index 0c55e51..6478484 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.0-beta +VERSION := 0.51.1-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)'