diff --git a/src/main.c b/src/main.c index fd6c141..90b7515 100644 --- a/src/main.c +++ b/src/main.c @@ -1426,7 +1426,7 @@ void print_usage(const char* program_name) { // Print version information void print_version() { - printf("C Nostr Relay Server v1.0.0\n"); + printf("C Nostr Relay Server %s\n", VERSION); printf("Event-based configuration system\n"); printf("Built with nostr_core_lib integration\n"); printf("\n"); diff --git a/src/main.h b/src/main.h index 0b2c3d5..256fbd5 100644 --- a/src/main.h +++ b/src/main.h @@ -12,8 +12,8 @@ // Version information (auto-updated by build system) #define VERSION_MAJOR 1 #define VERSION_MINOR 1 -#define VERSION_PATCH 1 -#define VERSION "v1.1.1" +#define VERSION_PATCH 2 +#define VERSION "v1.1.2" // Avoid VERSION_MAJOR redefinition warning from nostr_core_lib #undef VERSION_MAJOR