diff --git a/automatic/julia/julia.nuspec b/automatic/julia/julia.nuspec index a4a696016b1..3caf8af73f2 100644 --- a/automatic/julia/julia.nuspec +++ b/automatic/julia/julia.nuspec @@ -2,13 +2,13 @@ julia - 1.7.1 + 1.7.2 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.7.1 + https://github.com/JuliaLang/julia/releases/tag/v1.7.2 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 e58a9dc2fa8..a33d9910bde 100644 --- a/automatic/julia/legal/VERIFICATION.txt +++ b/automatic/julia/legal/VERIFICATION.txt @@ -6,14 +6,14 @@ The installer have 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: 4EA2969D7B42A99B0422966656DDC88B87266E14C32AA2E2F297FAE192F22035 - checksum64: 820F31DE28D409AE8FDA2EA01D39C67564FC6138D010E8B7E5D3D883D7DAEE23 + checksum32: 0A16FE4407A0C0F70657BBF01851057EB2AB1F76B25353A870C270E3EBF9FAA2 + checksum64: BEDE21E00130C2DCB6973A968B7ED43C35D69712008A95BB08D5536D3C9E2585 File 'LICENSE.txt' is obtained from diff --git a/automatic/julia/tools/chocolateyinstall.ps1 b/automatic/julia/tools/chocolateyinstall.ps1 index f188c858891..d3a62c55853 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.7.1-win32.exe" - file64 = "$toolsDir\julia-1.7.1-win64.exe" + file = "$toolsDir\julia-1.7.2-win32.exe" + file64 = "$toolsDir\julia-1.7.2-win64.exe" softwareName = 'Julia*' silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' validExitCodes= @(0) } -$packageVersion = "1.7.1" +$packageVersion = "1.7.2" Install-ChocolateyInstallPackage @packageArgs