From 27ee16f21ac2e4ac717b8ff0b6ab355585f9a42d Mon Sep 17 00:00:00 2001 From: LC mac Date: Sat, 10 Jan 2026 00:50:50 +0800 Subject: [PATCH] chore: cleanup and prepare v1.1.0 release --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2112acd..207b06d 100644 --- a/Makefile +++ b/Makefile @@ -257,7 +257,7 @@ info: @echo " Docker: $(shell docker --version 2>/dev/null || echo 'not found')" # ---------- Release Management ---------- -VERSION := $(shell grep -oP "VERSION = \"\K[^\"]+" src/pyhdwallet.py || echo "v1.1.0") +VERSION := $(shell grep 'VERSION = ' src/pyhdwallet.py | head -1 | sed 's/.*"\(.*\)".*/\1/' || echo "v1.1.0") RELEASE_DIR := releases/$(VERSION) .PHONY: release-prep