From 9cb040b44e19acbf32c41b1211aa1cfd1d2b6fa1 Mon Sep 17 00:00:00 2001 From: SimonMaracine Date: Fri, 14 Jun 2024 15:39:54 +0300 Subject: [PATCH] Increment version --- src/cpp_shared_ref/version.hpp | 2 +- tests/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp_shared_ref/version.hpp b/src/cpp_shared_ref/version.hpp index f3a7030..7f51d63 100644 --- a/src/cpp_shared_ref/version.hpp +++ b/src/cpp_shared_ref/version.hpp @@ -3,5 +3,5 @@ namespace sm { inline constexpr unsigned int VERSION_MAJOR {0}; inline constexpr unsigned int VERSION_MINOR {4}; - inline constexpr unsigned int VERSION_PATCH {0}; + inline constexpr unsigned int VERSION_PATCH {1}; } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1bcd504..b9692f9 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.20) function(set_compile_options_and_features target) if(UNIX) target_compile_options(${target} PRIVATE "-Wall" "-Wextra" "-Wpedantic" "-Wconversion") - elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + elseif(MSVC) target_compile_options(${target} PRIVATE "/W4") else() message(WARNING "Warnings are not enabled")