summaryrefslogtreecommitdiff
path: root/Help
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-10-08 09:19:30 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-10-08 09:19:30 +0900
commitfb13060136a8ffa9d00b546c0ddda80b52adf6f1 (patch)
tree108f06675773293f5bf8460ac3a08f4045f9df0a /Help
parent01310be508e7384e4a05bba3154f6fa458197696 (diff)
downloadcmake-fb13060136a8ffa9d00b546c0ddda80b52adf6f1.tar.gz
cmake-fb13060136a8ffa9d00b546c0ddda80b52adf6f1.tar.bz2
cmake-fb13060136a8ffa9d00b546c0ddda80b52adf6f1.zip
Imported Upstream version 3.16.5upstream/3.16.5
Diffstat (limited to 'Help')
-rw-r--r--Help/release/3.16.rst26
1 files changed, 26 insertions, 0 deletions
diff --git a/Help/release/3.16.rst b/Help/release/3.16.rst
index 0d1cc1ed6..e2d678821 100644
--- a/Help/release/3.16.rst
+++ b/Help/release/3.16.rst
@@ -277,3 +277,29 @@ Other Changes
* When using :variable:`CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS` on Windows the
auto-generated exports are now updated only when the object files
providing the symbols are updated.
+
+Updates
+=======
+
+Changes made since CMake 3.16.0 include the following.
+
+3.16.2
+------
+
+* CMake 3.16.0 and 3.16.1 processed ``.hh`` files with :prop_tgt:`AUTOMOC`.
+ This was a behavior change from CMake 3.15 and below that can break
+ existing projects, so it has been reverted as of 3.16.2.
+
+3.16.5
+------
+
+* The :module:`FindPython`, :module:`FindPython2`, and :module:`FindPython3`
+ modules no longer create cache entries for ``Python{,2,3}_LIBRARY_RELEASE``
+ and ``Python{,2,3}_LIBRARY_DEBUG``. Those values are always computed from
+ other results and so should not be cached. The entries were created by
+ CMake 3.16.0 through 3.16.4 but were always ``FORCE``-set and could not
+ be meaningfully edited by users.
+
+ Additionally, the modules no longer expose their internal ``_Python*``
+ cache entries publicly. CMake 3.16.0 through 3.16.4 accidentally
+ made them visible as advanced cache entries.