diff --git a/automatic/julia/julia.nuspec b/automatic/julia/julia.nuspec index 7ab1fe7bdc1..f173e3666ee 100644 --- a/automatic/julia/julia.nuspec +++ b/automatic/julia/julia.nuspec @@ -2,13 +2,13 @@ julia - 1.8.4 + 1.8.5 Julia programming language Jeff Bezanson, Alan Edelman, Stefan Karpinski, Viral B. Shah, Julia contributors chocolatey-community, FlorianRappl, drel https://github.com/JuliaLang/julia/blob/master/LICENSE.md https://julialang.org - https://github.com/JuliaLang/julia/releases/tag/v1.8.4 + https://github.com/JuliaLang/julia/releases/tag/v1.8.5 https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/julia https://github.com/JuliaLang/julia http://docs.julialang.org/ diff --git a/automatic/julia/legal/VERIFICATION.txt b/automatic/julia/legal/VERIFICATION.txt index 02c4e1a44ff..79677650b84 100644 --- a/automatic/julia/legal/VERIFICATION.txt +++ b/automatic/julia/legal/VERIFICATION.txt @@ -6,14 +6,14 @@ The installer has been downloaded from the Julia download page on - 64-bit installer: + 32-bit installer: + 64-bit installer: 2. You can use one of the following methods to obtain the checksum - Use powershell function 'Get-Filehash' - Use chocolatey utility 'checksum.exe' checksum type: sha256 - checksum32: 4CAB6149FF7E60B38D1D7DB2CF7C231C36AB8AD79199DBBCDA7A3CF236A19177 - checksum64: E040E6CC0DB89AEE459A2B6E383DE3AF7FAD3A3E6B030763C414C11C43326029 + checksum32: 60BE0C4141AE2CA4B91A8427AE37EABFFCABE0689C98F115A15A3275D53763A7 + checksum64: 866E160D46C85167D10E8A925776C2FB1CEA0F668EB8C80A605842FD35EF28B5 File 'LICENSE.txt' is obtained from diff --git a/automatic/julia/tools/chocolateyinstall.ps1 b/automatic/julia/tools/chocolateyinstall.ps1 index 9a5487bfcc4..5d570abe376 100644 --- a/automatic/julia/tools/chocolateyinstall.ps1 +++ b/automatic/julia/tools/chocolateyinstall.ps1 @@ -5,15 +5,15 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $packageArgs = @{ packageName = $env:ChocolateyPackageName fileType = 'exe' - file = "$toolsDir\julia-1.8.4-win32.exe" - file64 = "$toolsDir\julia-1.8.4-win64.exe" + file = "$toolsDir\julia-1.8.5-win32.exe" + file64 = "$toolsDir\julia-1.8.5-win64.exe" softwareName = 'Julia*' silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' validExitCodes= @(0) } -$packageVersion = "1.8.4" +$packageVersion = "1.8.5" Install-ChocolateyInstallPackage @packageArgs