v0.7.29 - Update increment and push script

This commit is contained in:
Your Name
2025-10-18 14:57:34 -04:00
parent 6638d37d6f
commit e878b9557e
2 changed files with 3 additions and 3 deletions

View File

@@ -150,7 +150,7 @@ update_version_in_header() {
sed -i "s/#define VERSION_MAJOR [0-9]\+/#define VERSION_MAJOR $major/" src/main.h sed -i "s/#define VERSION_MAJOR [0-9]\+/#define VERSION_MAJOR $major/" src/main.h
# Update VERSION_MINOR macro # 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 # Update VERSION_PATCH macro
sed -i "s/#define VERSION_PATCH [0-9]\+/#define VERSION_PATCH $patch/" src/main.h sed -i "s/#define VERSION_PATCH [0-9]\+/#define VERSION_PATCH $patch/" src/main.h

View File

@@ -10,10 +10,10 @@
#define MAIN_H #define MAIN_H
// Version information (auto-updated by build system) // Version information (auto-updated by build system)
#define VERSION "v0.7.28" #define VERSION "v0.7.29"
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR #define VERSION_MINOR
#define VERSION_PATCH 28 #define VERSION_PATCH 29
// Relay metadata (authoritative source for NIP-11 information) // Relay metadata (authoritative source for NIP-11 information)
#define RELAY_NAME "C-Relay" #define RELAY_NAME "C-Relay"