@@ -23,6 +23,19 @@ For reference, the associated merge request is https://gitlab.kitware.com/cmake/
2323
2424<!-- CHANGELOG-INSERT -->
2525
26+ ### v1.9
27+
28+ * feat(Vcvars): Support ` FunctionsOnly ` component to skip discovery logic
29+ * ci: Add GitHub Actions workflow to run script-mode tests
30+ * ci: Use ` src ` subdir for checkout
31+ * docs: Fix listing of change entries using git
32+ * tests: Add initial test infrastructure for FindVcvars module
33+ * tests: Add script-mode tests with support for requested and expected variables
34+ * tests: Refactor test script to support both script and project modes
35+ * tests: Add add_find_vcvars_test() function to reduce duplication
36+ * tests: Add project-mode tests using fixture-based setup
37+ * tests: Check specifying FunctionsOnly component works as expected
38+
2639### v1.8
2740
2841* docs: Add changelog insertion placeholder and streamline release instructions
@@ -73,8 +86,8 @@ There are few possible approaches:
7386``` cmake
7487# Download FindVcvars.cmake
7588set(dest_file "${CMAKE_CURRENT_BINARY_DIR}/FindVcvars.cmake")
76- set(expected_hash "da544df5e162e99aadb9d3cbb171851d4254e177b1af7081123bef55068970fa ")
77- set(url "https://raw.githubusercontent.com/scikit-build/cmake-FindVcvars/v1.8 /FindVcvars.cmake")
89+ set(expected_hash "361329de94bbcfdbd93ce76ad6c7318f84eacf9f30a7d8740dae316bb060e5aa ")
90+ set(url "https://raw.githubusercontent.com/scikit-build/cmake-FindVcvars/v1.9 /FindVcvars.cmake")
7891if(NOT EXISTS ${dest_file})
7992 file(DOWNLOAD ${url} ${dest_file} EXPECTED_HASH SHA256=${expected_hash})
8093else()
0 commit comments