From c6cfe36f00697c7f6d31f7c8070a3e687456be94 Mon Sep 17 00:00:00 2001 From: Rowan Date: Sun, 13 Sep 2026 16:32:08 -0400 Subject: [PATCH] netcode 1.4.7: bump CMakeLists.txt and netcode.h Every version site the repo carries: project(netcode VERSION) in CMakeLists.txt, and NETCODE_VERSION_FULL and NETCODE_VERSION_PATCH in netcode.h. The release-check workflow requires all three to agree with the tag. Co-Authored-By: Claude Opus 5 --- CMakeLists.txt | 2 +- netcode.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 639923b..0074db3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) set(CMAKE_TARGET_MESSAGES OFF) endif() -project(netcode VERSION 1.4.6 LANGUAGES C CXX) +project(netcode VERSION 1.4.7 LANGUAGES C CXX) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) diff --git a/netcode.h b/netcode.h index 37a3b55..aaa8fe0 100755 --- a/netcode.h +++ b/netcode.h @@ -32,10 +32,10 @@ #ifndef NETCODE_H #define NETCODE_H -#define NETCODE_VERSION_FULL "1.4.6" +#define NETCODE_VERSION_FULL "1.4.7" #define NETCODE_VERSION_MAJOR 1 #define NETCODE_VERSION_MINOR 4 -#define NETCODE_VERSION_PATCH 6 +#define NETCODE_VERSION_PATCH 7 /* IMPORTANT: netcode is single-threaded by design and is not thread safe.