From 2b70b3693e9dc3e144db1a73224921d405081663 Mon Sep 17 00:00:00 2001 From: DacoTaco Date: Sat, 9 Sep 2023 13:48:49 +0200 Subject: [PATCH] chore: prepare for release --- src/Shared/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shared/version.h b/src/Shared/version.h index 003491b8..14c126b0 100644 --- a/src/Shared/version.h +++ b/src/Shared/version.h @@ -43,7 +43,7 @@ typedef struct { #define VERSION_MAJOR 0 #define VERSION_MINOR 10 #define VERSION_PATCH 0 -#define VERSION_RC 3 +#define VERSION_RC 0 #define VERSION (version_t){ VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_RC } #define VERSION_MERGED ((u32)(VERSION_MAJOR << 24 | VERSION_MINOR<<16 | VERSION_PATCH<<8 | VERSION_RC)) #define VERSION_DEPRECATED (unsigned int)((VERSION_MAJOR << 8) | (VERSION_MINOR * 10) | (VERSION_PATCH))