From e878b9557e692ec6461a590ee77b7628fe723a82 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 18 Oct 2025 14:57:34 -0400 Subject: [PATCH] v0.7.29 - Update increment and push script --- increment_and_push.sh | 2 +- src/main.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/increment_and_push.sh b/increment_and_push.sh index 369a466..c4619f4 100755 --- a/increment_and_push.sh +++ b/increment_and_push.sh @@ -150,7 +150,7 @@ update_version_in_header() { sed -i "s/#define VERSION_MAJOR [0-9]\+/#define VERSION_MAJOR $major/" src/main.h # Update VERSION_MINOR macro - sed -i "s/#define VERSION_MINOR [0-9]*/#define VERSION_MINOR $minor/" src/main.h + sed -i "s/#define VERSION_MINOR .*/#define VERSION_MINOR $minor/" src/main.h # Update VERSION_PATCH macro sed -i "s/#define VERSION_PATCH [0-9]\+/#define VERSION_PATCH $patch/" src/main.h diff --git a/src/main.h b/src/main.h index abbf26f..17341b3 100644 --- a/src/main.h +++ b/src/main.h @@ -10,10 +10,10 @@ #define MAIN_H // Version information (auto-updated by build system) -#define VERSION "v0.7.28" +#define VERSION "v0.7.29" #define VERSION_MAJOR 0 #define VERSION_MINOR -#define VERSION_PATCH 28 +#define VERSION_PATCH 29 // Relay metadata (authoritative source for NIP-11 information) #define RELAY_NAME "C-Relay"