Skip to content

Commit

Permalink
update known information for CMake to version 3.27.8
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Nov 15, 2023
1 parent e5a868e commit 74a41cf
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.7";
const string version = "3.27.8";
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,
"adcce264ca97cfa15fdf3894b5c7dff6df745b43f3596bcffa50534c21c444a1",
"4c18c8ce469731a8ec54ef29525cde4f5367ddcae7c988f7e6aab4e262ac68b9",
signature,
"/qn /norestart"),
new InstallInfoMsi(
"https://github.com/Kitware/CMake/releases/download/v" + version + "/cmake-" + version + "-windows-x86_64.msi",
HashAlgorithm.SHA256,
"40d06412e7dc73007fedb2df5955c1379e87398febd1d1b69aaca7e80fcad366",
"5b23619bacd10b4d6c26f5242284b240dca1f10b713121e58d984e8acceb76e4",
signature,
"/qn /norestart")
);
Expand Down

0 comments on commit 74a41cf

Please sign in to comment.