diff --git a/Help/release/4.0.rst b/Help/release/4.0.rst index 0c7a011d4b..4cf3e0d0e6 100644 --- a/Help/release/4.0.rst +++ b/Help/release/4.0.rst @@ -302,9 +302,14 @@ Changes made since CMake 4.0.0 include the following. Some implementation updates were made to support ecosystem changes and/or fix regressions. -.. 4.0.5 +4.0.5 +----- - * When building for macOS with the :generator:`Xcode` generator, - :variable:`CMAKE_OSX_DEPLOYMENT_TARGET` once again defaults to the - host's macOS version if it is older than the macOS SDK version, - as it did in CMake versions prior to 4.0. +* When building for macOS with the :generator:`Xcode` generator, + :variable:`CMAKE_OSX_DEPLOYMENT_TARGET` once again defaults to the + host's macOS version if it is older than the macOS SDK version, + as it did in CMake versions prior to 4.0. + +* The :command:`execute_process` command once again terminates child + processes when its ``TIMEOUT`` is reached. This was accidentally + regressed by CMake 3.29. diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index f3a3f5b3f7..355381903c 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -1,7 +1,7 @@ # CMake version number components. set(CMake_VERSION_MAJOR 4) set(CMake_VERSION_MINOR 0) -set(CMake_VERSION_PATCH 4) +set(CMake_VERSION_PATCH 5) #set(CMake_VERSION_RC 0) set(CMake_VERSION_IS_DIRTY 0)