Skip to content

Commit

Permalink
update known information for CMake to version 3.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Dec 6, 2023
1 parent e2a9771 commit 93e7385
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.27.9";
const string version = "3.28.0";
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,
"ab0c8191bd8b0b60831df430deeb3d2a626f90c0a58adee1d0ee43d1572968b9",
"62320d48bc26886cdf37b2578f003d0e57dd6fd9020487fcf1f824e34b1955c6",
signature,
"/qn /norestart"),
new InstallInfoMsi(
"https://github.com/Kitware/CMake/releases/download/v" + version + "/cmake-" + version + "-windows-x86_64.msi",
HashAlgorithm.SHA256,
"8e67ea0344ea28579e127fab12d3015602a37a5d3c4763fe94d4cb2342ea0cd7",
"e2f43c9bfdf10ebe51a1fd2420168392f2f7184c5da6fe3614845b8081ea3cd9",
signature,
"/qn /norestart")
);
Expand Down

0 comments on commit 93e7385

Please sign in to comment.