Skip to content

Commit a9ba616

Browse files
authored
Update to CMake 3.21.0 (#162)
1 parent fdd276a commit a9ba616

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

CMakeUrls.cmake

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11

22
#-----------------------------------------------------------------------------
33
# CMake sources
4-
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.20.5/cmake-3.20.5.tar.gz")
5-
set(unix_source_sha256 "12c8040ef5c6f1bc5b8868cede16bb7926c18980f59779e299ab52cbc6f15bb0")
4+
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0.tar.gz")
5+
set(unix_source_sha256 "4a42d56449a51f4d3809ab4d3b61fd4a96a469e56266e896ce1009b5768bd2ab")
66

7-
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.20.5/cmake-3.20.5.zip")
8-
set(windows_source_sha256 "37fd84db08ecc517b2274c06161978744ab6f3459a89c9aa9b68bef7e053dd61")
7+
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0.zip")
8+
set(windows_source_sha256 "50673175e4fad02e60f57602393930aaf03911356c107149813986e2711695c6")
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/v3.20.5/cmake-3.20.5-linux-x86_64.tar.gz")
17-
set(linux64_binary_sha256 "5ffbc450c992cbc383c787576385ff35aefb762b0f05cbde8bab2c995ab045aa")
16+
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0-linux-x86_64.tar.gz")
17+
set(linux64_binary_sha256 "d54ef6909f519740bc85cec07ff54574cd1e061f9f17357d9ace69f61c6291ce")
1818

19-
set(macos10_10_binary_url "https://github.com/Kitware/CMake/releases/download/v3.20.5/cmake-3.20.5-macos10.10-universal.tar.gz")
20-
set(macos10_10_binary_sha256 "eb8c6de66da980e693e77bca60bff093a1de48585543eea3dc8a2b8a6832dfd0")
19+
set(macos10_10_binary_url "https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0-macos10.10-universal.tar.gz")
20+
set(macos10_10_binary_sha256 "de0ae285d3fdf88373397b53de007e29cc67bec7cb945badff3eeecf80c25016")
2121

22-
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.20.5/cmake-3.20.5-windows-i386.zip")
23-
set(win32_binary_sha256 "3e288bb1b85d5bfab6671c9bdcea4192eeb02eae1fbf23d0e872e160bb644afa")
22+
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0-windows-i386.zip")
23+
set(win32_binary_sha256 "11ee86b7f9799724fc16664c63e308bfe3fbc22c9df8ef4955ad4b248f3e680b")
2424

25-
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.20.5/cmake-3.20.5-windows-x86_64.zip")
26-
set(win64_binary_sha256 "d064e3b4f76d9b8c63ea119c545f769d7bdbf19b484dc94df11508c4f3e05d6d")
25+
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v3.21.0/cmake-3.21.0-windows-x86_64.zip")
26+
set(win64_binary_sha256 "c7b88c907a753f4ec86e43ddc89f91f70bf1b011859142f7f29e6d51ea4abb3c")

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 3.20.5 <https://cmake.org/cmake/help/v3.20/index.html>`_.
14+
The CMake python wheels provide `CMake 3.21.0 <https://cmake.org/cmake/help/v3.21/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://www.itk.org>`_ and `VTK <http://www.vtk.org>`_.
1717

18-
The CMake python wheels provide `CMake 3.20.5 <https://cmake.org/cmake/help/v3.20/index.html>`_.
18+
The CMake python wheels provide `CMake 3.21.0 <https://cmake.org/cmake/help/v3.21/index.html>`_.
1919

2020
.. toctree::
2121
:maxdepth: 2

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=3.20.5
32+
$ release=3.21.0
3333
$ ./scripts/update_cmake_version.py $release
34-
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v3.20.5'
34+
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v3.21.0'
3535
[...]
36-
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v3.20.5' - done
37-
Updating 'CMakeUrls.cmake' with CMake version 3.20.5
38-
Updating 'CMakeUrls.cmake' with CMake version 3.20.5 - done
36+
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v3.21.0' - done
37+
Updating 'CMakeUrls.cmake' with CMake version 3.21.0
38+
Updating 'CMakeUrls.cmake' with CMake version 3.21.0 - 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=3.20.5
49+
release=3.21.0
5050
git switch -c update-to-cmake-$release
5151
git add -u CMakeUrls.cmake docs/index.rst README.rst tests/test_distribution.py docs/update_cmake_version.rst
5252
git commit -m "Update to CMake $release"

tests/test_distribution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _check_cmake_install(virtualenv, tmpdir):
12-
expected_version = "3.20.5"
12+
expected_version = "3.21.0"
1313

1414
for executable_name in ["cmake", "cpack", "ctest"]:
1515
output = virtualenv.run(

0 commit comments

Comments
 (0)