summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-05-14 11:29:07 -0400
committerBrad King <brad.king@kitware.com>2019-05-14 11:29:07 -0400
commit319b47c9c7786f87672e0d8350d3e7d5b1bf2b9e (patch)
tree666517f795b5fded82b32ff12920fed0dee4d941
parent016a8bc6593a0015b3082e152f1f5277b03cd7bd (diff)
parentf2aeba927c89ad6b59b86d83cba40e5178231334 (diff)
downloadcmake-319b47c9c7786f87672e0d8350d3e7d5b1bf2b9e.tar.gz
Merge branch 'doc-relnotes-3.14' into release-3.14
Merge-request: !3319
-rw-r--r--Help/release/3.13.rst9
-rw-r--r--Help/release/3.14.rst10
2 files changed, 19 insertions, 0 deletions
diff --git a/Help/release/3.13.rst b/Help/release/3.13.rst
index 1c58550fff..a8dd0baf7c 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.
diff --git a/Help/release/3.14.rst b/Help/release/3.14.rst
index c208304754..8a251bd18e 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.