From d6b8822919c70fb1e60d6319a81e7691be416ab5 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 14 May 2019 11:18:42 -0400 Subject: Help: Add 3.13.5 release notes Add a note about the fix in commit 3d3713121b (target_link_libraries: Fix static library private deps in other dirs, 2019-04-30). --- Help/release/3.13.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Help/release/3.13.rst b/Help/release/3.13.rst index 1c58550..a8dd0ba 100644 --- a/Help/release/3.13.rst +++ b/Help/release/3.13.rst @@ -278,3 +278,12 @@ Changes made since CMake 3.13.0 include the following. relying on the old behavior can be trivially fixed by specifying the path to the source tree (even if just ``.``) explicitly and continue to work with all versions of CMake. + +3.13.5 +------ + +* In CMake 3.13.0 through 3.13.4, calling :command:`target_link_libraries` + to add ``PRIVATE`` dependencies to a static library created in another + directory (under policy :policy:`CMP0079` ``NEW`` behavior) would + incorrectly propagate usage requirements of those dependencies to + dependents that link the static library. This has been fixed. -- cgit v0.12 From f2aeba927c89ad6b59b86d83cba40e5178231334 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 14 May 2019 11:21:00 -0400 Subject: Help: Add 3.14.4 release notes Add a note about the fix in commit 3d3713121b (target_link_libraries: Fix static library private deps in other dirs, 2019-04-30). Also reference the equivalent note already added to the 3.13.5 notes. --- Help/release/3.14.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Help/release/3.14.rst b/Help/release/3.14.rst index c208304..8a251bd 100644 --- a/Help/release/3.14.rst +++ b/Help/release/3.14.rst @@ -402,3 +402,13 @@ Changes made since CMake 3.14.0 include the following. * The :variable:`CMAKE_VS_PLATFORM_NAME_DEFAULT` variable was added to help toolchain files work with the :generator:`Visual Studio 16 2019` generator where the default platform now depends on the host platform. + +3.14.4 +------ + +* In CMake 3.14.0 through 3.14.3, calling :command:`target_link_libraries` + to add ``PRIVATE`` dependencies to a static library created in another + directory (under policy :policy:`CMP0079` ``NEW`` behavior) would + incorrectly propagate usage requirements of those dependencies to + dependents that link the static library. This has been fixed. + The bug also existed in 3.13.0 through 3.13.4 and is fixed in 3.13.5. -- cgit v0.12