Compare commits

..

3 commits

Author SHA1 Message Date
0aa8d2b09a Merge branch 'dev', version 3.0.1
All checks were successful
Run UnitTest / build-and-run-UnitTest (push) Successful in 9s
2024-05-08 16:27:51 +09:00
787f5422f4 Bump version, 3.0.1, update Changelog 2024-05-08 16:26:58 +09:00
3303cab056 Removed unnecessary header include 2024-05-08 16:26:08 +09:00
3 changed files with 6 additions and 2 deletions

View file

@ -6,7 +6,7 @@ set(SC_3D_CollisionDetectionHelpers_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}/src/sc_
add_library(SC_3D_CollisionDetectionHelpers ${SC_3D_CollisionDetectionHelpers_SOURCES}) add_library(SC_3D_CollisionDetectionHelpers ${SC_3D_CollisionDetectionHelpers_SOURCES})
set_target_properties(SC_3D_CollisionDetectionHelpers PROPERTIES VERSION 3.0.0 SOVERSION 3) set_target_properties(SC_3D_CollisionDetectionHelpers PROPERTIES VERSION 3.0.1 SOVERSION 3)
target_compile_features(SC_3D_CollisionDetectionHelpers PUBLIC cxx_std_20) target_compile_features(SC_3D_CollisionDetectionHelpers PUBLIC cxx_std_20)
if(NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE}" STREQUAL "") if(NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE}" STREQUAL "")

View file

@ -1,5 +1,10 @@
# Changelog # Changelog
## Version 3.0.1
Remove unnecessary header include in sc_sacd.cpp. This should fix builds that
do not target C++23 as the header is from C++23.
## Version 3.0.0 ## Version 3.0.0
### Breaking Changes ### Breaking Changes

View file

@ -4,7 +4,6 @@
#include <array> #include <array>
#include <cmath> #include <cmath>
#include <span> #include <span>
#include <stdfloat>
#include <vector> #include <vector>
// ============================================================================= // =============================================================================