Skip to content

Commit

Permalink
v0.5.612
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyaven committed Apr 15, 2024
1 parent 56283a7 commit b04cbaf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ To bump the version, update the `version` and `releaseNotes` fields in `stackql/
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>stackql</id>
<version>0.5.604</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.5.604</releaseNotes>
<version>0.5.612</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.5.612</releaseNotes>
...
```

Expand Down
4 changes: 2 additions & 2 deletions stackql/stackql.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>stackql</id>
<version>0.5.604</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.5.604</releaseNotes>
<version>0.5.612</version>
<releaseNotes>https://github.com/stackql/stackql/releases/tag/v0.5.612</releaseNotes>
<packageSourceUrl>https://github.com/stackql/chocolatey-install</packageSourceUrl>
<owners>stackql</owners>
<title>stackql (Install)</title>
Expand Down
3 changes: 2 additions & 1 deletion stackql/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $packageArgs = @{
fileType = 'MSI'
url64bit = $url64
softwareName = 'stackql*'
checksum64 = 'e205af43a221b3d532ce77753e0ad8c5bd10e6d71ef0a3d47db0748882b4bb2c'
checksum64 = '0894640d3c2d4c529159bd563464e34f31bd8d4e69bf5107d72c14e64600e9eb'
checksumType64 = 'sha256'
silentArgs = "/passive /l* stackql.log"
validExitCodes = @(0, 3010, 1641)
Expand All @@ -20,3 +20,4 @@ Install-ChocolateyPackage @packageArgs




5 changes: 5 additions & 0 deletions update_checksum.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ $installScriptPath = 'stackql\tools\chocolateyinstall.ps1'
# Download the MSI file
Invoke-WebRequest -Uri $msiUrl -OutFile $msiTempPath

# Display the created date of the downloaded MSI file
$msiFileInfo = Get-Item $msiTempPath
$msiCreationTime = $msiFileInfo.CreationTime
Write-Host "The creation date of the downloaded MSI file is: $msiCreationTime"

# Calculate the checksum
$checksum = (certutil -hashfile $msiTempPath SHA256)[1] -replace " ", ""

Expand Down

0 comments on commit b04cbaf

Please sign in to comment.