diff --git a/choco/tinytex.nuspec b/choco/tinytex.nuspec index f646f76..d4087a1 100644 --- a/choco/tinytex.nuspec +++ b/choco/tinytex.nuspec @@ -3,7 +3,7 @@ tinytex - 2023.12 + 2024.01 https://github.com/rstudio/tinytex-releases/tree/master/choco naveen521kk TinyTeX diff --git a/choco/tools/chocolateyinstall.ps1 b/choco/tools/chocolateyinstall.ps1 index c56e356..cfed4f7 100644 --- a/choco/tools/chocolateyinstall.ps1 +++ b/choco/tools/chocolateyinstall.ps1 @@ -1,12 +1,12 @@ $ErrorActionPreference = 'Stop'; -$version = '2023.12'; +$version = '2024.01'; $toolsDir = Get-ToolsLocation $url = "https://github.com/rstudio/tinytex-releases/releases/download/v$($version)/TinyTeX-1-v$($version).zip" $packageArgs = @{ packageName = $env:ChocolateyPackageName unzipLocation = $toolsDir url = $url - checksum = '6e22d415e366488583d0db2e5d64f950' + checksum = 'fd4c43144c8ecf3633e5ddb772ef315c' checksumType = 'md5' }