Skip to content

Commit 4b83028

Browse files
[Bot] Update to CMake 4.0.2 (#608)
Co-authored-by: scikit-build-app-bot[bot] <173546081+scikit-build-app-bot[bot]@users.noreply.github.com>
1 parent 40a9c56 commit 4b83028

7 files changed

+27
-27
lines changed

CMakeUrls.cmake

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11

22
#-----------------------------------------------------------------------------
33
# CMake sources
4-
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1.tar.gz")
5-
set(unix_source_sha256 "d630a7e00e63e520b25259f83d425ef783b4661bdc8f47e21c7f23f3780a21e1")
4+
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2.tar.gz")
5+
set(unix_source_sha256 "1c3a82c8ca7cf12e0b17178f9d0c32f7ac773bd5651a98fcfd80fbf4977f8d48")
66

7-
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1.zip")
8-
set(windows_source_sha256 "c051bddf64ad27339471b9c5e95975946ba890a8b919b4164d2023f4550e4bb8")
7+
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2.zip")
8+
set(windows_source_sha256 "983f2b0cc24edd9d6c2754d2f52f0fce36f0368c95a9b6f45df3faf1dfd0728a")
99

1010
#-----------------------------------------------------------------------------
1111
# CMake binaries
1212

1313
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
1414
set(linux32_binary_sha256 "NA")
1515

16-
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "d66c11c010588c8256ee20a26b45977cd5b2f4aee2b742d4b8a353769940d147")
16+
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "80940e81de61584fe4eedd3c40adc597d7c5b76ad8709668007b467a3c2a36c7")
1818

19-
set(macos10_10_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-macos10.10-universal.tar.gz")
20-
set(macos10_10_binary_sha256 "ef703f8227a3d32054cd964c1d21912ca0176a36ead4ff35e319cfac84182778")
19+
set(macos10_10_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-macos10.10-universal.tar.gz")
20+
set(macos10_10_binary_sha256 "edb0713b557040a2e90718909e11cac82810fe2bf8943828b11cfb84b75815a0")
2121

22-
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-windows-i386.zip")
23-
set(win32_binary_sha256 "9174c1f0b519418436eb37c9b419aff40a8b12e12feee649abf04826544f2cdd")
22+
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-windows-i386.zip")
23+
set(win32_binary_sha256 "026009a57d06cb8342e42840fcbd83bc5e58ee3ea90d3ddc8e46f82a0d93d9ff")
2424

25-
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-windows-x86_64.zip")
26-
set(win64_binary_sha256 "31742b9a264b36897e0c904ab3520baf00a5b5ac5bc801aeede28d0d217eec65")
25+
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-windows-x86_64.zip")
26+
set(win64_binary_sha256 "109ec7de10416d6d78991bab9714d2cb1ccb71d1b436dff42ec978dd283c29fc")
2727

28-
set(winarm64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-windows-arm64.zip")
29-
set(winarm64_binary_sha256 "3de43c9c826349bba61eef04de90c12c2ad8632b0e0af31c57145f6da69898fb")
28+
set(winarm64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-windows-arm64.zip")
29+
set(winarm64_binary_sha256 "634d6bab01a639e314f4fb2fee0967c84c3a37e39b9b2c9455c2dff2deb6a6dc")

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The suite of CMake tools were created by Kitware in response to the need
1111
for a powerful, cross-platform build environment for open-source projects
1212
such as ITK and VTK.
1313

14-
The CMake python wheels provide `CMake 4.0.1 <https://cmake.org/cmake/help/v4.0/index.html>`_.
14+
The CMake python wheels provide `CMake 4.0.2 <https://cmake.org/cmake/help/v4.0/index.html>`_.
1515

1616
Latest Release
1717
--------------

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The suite of CMake tools were created by Kitware in response to the need
1515
for a powerful, cross-platform build environment for open-source projects
1616
such as `ITK <https://itk.org>`_ and `VTK <https://vtk.org>`_.
1717

18-
The CMake python wheels provide `CMake 4.0.1 <https://cmake.org/cmake/help/v4.0/index.html>`_.
18+
The CMake python wheels provide `CMake 4.0.2 <https://cmake.org/cmake/help/v4.0/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

docs/make_a_release.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ Prerequisites
4444

4545
.. code:: console
4646
47-
$ git tag --sign -m 'cmake-python-distributions 4.0.1' 4.0.1 main
48-
$ git push origin 4.0.1
47+
$ git tag --sign -m 'cmake-python-distributions 4.0.2' 4.0.2 main
48+
$ git push origin 4.0.2
4949
5050
.. warning::
5151

docs/update_cmake_version.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ Classic procedure:
2929
2. Execute `scripts/update_cmake_version.py` command line tool with the desired
3030
``X.Y.Z`` CMake version available for download. For example::
3131

32-
$ release=4.0.1
32+
$ release=4.0.2
3333
$ ./scripts/update_cmake_version.py $release
34-
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.0.1'
34+
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.0.2'
3535
[...]
36-
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.0.1' - done
37-
Updating 'CMakeUrls.cmake' with CMake version 4.0.1
38-
Updating 'CMakeUrls.cmake' with CMake version 4.0.1 - done
36+
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.0.2' - done
37+
Updating 'CMakeUrls.cmake' with CMake version 4.0.2
38+
Updating 'CMakeUrls.cmake' with CMake version 4.0.2 - done
3939
Updating docs/index.rst
4040
Updating docs/index.rst - done
4141
Updating README.rst
@@ -46,7 +46,7 @@ Classic procedure:
4646
3. Create a topic named `update-to-cmake-X.Y.Z` and commit the changes.
4747
For example::
4848

49-
release=4.0.1
49+
release=4.0.2
5050
git switch -c update-to-cmake-$release
5151
git add -u CMakeUrls.cmake docs/index.rst README.rst tests/test_cmake.py docs/update_cmake_version.rst
5252
git commit -m "Update to CMake $release"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backend-path = ["_build_backend"]
55

66
[project]
77
name = "cmake"
8-
version = "4.0.1"
8+
version = "4.0.2"
99
description = "CMake is an open-source, cross-platform family of tools designed to build, test and package software"
1010
keywords = ["CMake", "build", "c++", "fortran", "cross-platform", "cross-compilation"]
1111
readme = "README.rst"

tests/test_cmake.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ def _get_scripts():
6868

6969
@all_tools
7070
def test_cmake_script(tool):
71-
expected_version = "4.0.1"
71+
expected_version = "4.0.2"
7272
scripts = [script for script in _get_scripts() if script.stem == tool]
7373
assert len(scripts) == 1
7474
output = subprocess.check_output([str(scripts[0]), "--version"]).decode("ascii")
7575
assert output.splitlines()[0] == f"{tool} version {expected_version}"
7676

7777

7878
def test_cmake_main():
79-
expected_version = "4.0.1"
79+
expected_version = "4.0.2"
8080
output = subprocess.run([sys.executable, "-m", "cmake", "--version"], text=True, capture_output=True, check=False).stdout
8181
assert output.splitlines()[0] == f"cmake version {expected_version}"

0 commit comments

Comments
 (0)