Skip to content

Commit

Permalink
update known information for CMake to version 3.29.3
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed May 8, 2024
1 parent 6405e3e commit 4b2921b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions updater/software/CMake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,21 @@ public CMake(bool autoGetNewer)
public override AvailableSoftware knownInfo()
{
var signature = new Signature(publisherX509, certificateExpiration);
const string version = "3.29.2";
const string version = "3.29.3";
return new AvailableSoftware("CMake",
version,
"^CMake$",
"^CMake$",
new InstallInfoMsi(
"https://github.com/Kitware/CMake/releases/download/v"+ version + "/cmake-" + version + "-windows-i386.msi",
HashAlgorithm.SHA256,
"bf0bd85ef2fd8f84973a2ab5769906b3a0fb85cbafdeaf39d5df89dde3280e0c",
"de79623594f6116999819514678580a8d1bc1ad85241a23c4e6c6408a47d70b1",
signature,
"/qn /norestart"),
new InstallInfoMsi(
"https://github.com/Kitware/CMake/releases/download/v" + version + "/cmake-" + version + "-windows-x86_64.msi",
HashAlgorithm.SHA256,
"c8ed00635d855211f1410bda256d9e47d864855ad33f70e236d37cefedbbd24b",
"9a8fc7d24050b6ef354e568dded20a5e26d34c9c3fc344fdec701206b496e05a",
signature,
"/qn /norestart")
);
Expand Down

0 comments on commit 4b2921b

Please sign in to comment.