Skip to content

Commit

Permalink
update known information for CMake to version 3.31.2
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Dec 5, 2024
1 parent 6130563 commit f2bb795
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.31.1";
const string version = "3.31.2";
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,
"1b7062672ed2cd83fc87c16a1eec40a45462562f458bd62e226bbdf7ffafb144",
"7a7aa61ddbb93e63a383fe17601d6e919538a18ac34f7d2c97cbacb4b69ae665",
signature,
"/qn /norestart"),
new InstallInfoMsi(
"https://github.com/Kitware/CMake/releases/download/v" + version + "/cmake-" + version + "-windows-x86_64.msi",
HashAlgorithm.SHA256,
"fa3d4e4a48ea8692ff4b0bb0726bcdba8d940f2ebca7ffd2dacde06754062153",
"9d0c8ecad08cd6fe167328da26d4830335d8e5f5879e8d4b7cf635b4d1907262",
signature,
"/qn /norestart")
);
Expand Down

0 comments on commit f2bb795

Please sign in to comment.