Changed versions and changelog

This commit is contained in:
anonpenguin23 2025-10-22 07:18:21 +03:00
parent a9d4c1e0d6
commit 6d6c73dc33
No known key found for this signature in database
GPG Key ID: 1CBB1FE35AFBEE30
2 changed files with 20 additions and 1 deletions

View File

@ -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

View File

@ -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)'