From ff090b6f90348b3bfe7c776403d5d6740de663b0 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 6 Nov 2025 22:23:31 +0000 Subject: [PATCH] De-duplicate version numbers in `CMakeLists.txt` Rather than duplicating the version number between client and `examples`, we should simply _inherit_ the version number in `examples` - it's not built on it's own. This is a _step towards_ having the version number declared _only once_ to make incrementing easier. --- examples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 372a326ba..b0999f3e7 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -17,7 +17,7 @@ cmake_minimum_required (VERSION 3.10) project (hazelcast-cpp-client-examples - VERSION 5.5.0 + VERSION ${hazelcast-cpp-client_VERSION} DESCRIPTION "Hazelcast C++ Client Code Examples" LANGUAGES CXX)