diff --git a/automatic/sqlite/legal/VERIFICATION.txt b/automatic/sqlite/legal/VERIFICATION.txt index 366824c4c7c..3e58762f30c 100644 --- a/automatic/sqlite/legal/VERIFICATION.txt +++ b/automatic/sqlite/legal/VERIFICATION.txt @@ -7,9 +7,9 @@ Package can be verified like this: 1. Go to - x32: https://sqlite.org/2023/sqlite-dll-win32-x86-3430200.zip - x64: https://sqlite.org/2023/sqlite-dll-win64-x64-3430200.zip - Toolsx64: https://sqlite.org/2023/sqlite-tools-win32-x86-3430200.zip + x32: https://sqlite.org/2024/sqlite-dll-win-x86-3460000.zip + x64: https://sqlite.org/2024/sqlite-dll-win-x64-3460000.zip + Toolsx64: https://sqlite.org/2024/sqlite-tools-win-x64-3460000.zip to download the files. @@ -17,9 +17,9 @@ Package can be verified like this: - Use powershell function 'Get-FileHash' - Use Chocolatey utility 'checksum.exe' - checksum32: 0B64B189CB41D065F9355DE93CE2F41C40865429801BEC3A555B30ACA839058C - checksum64: FA8981F39524F25FCC546C45A87FF4C1EEFD81FDC22F55A9BBE249155CDAF62E - checksumTools64: FAE9EFCCF4469CA69BE5D418FC088593CDB86E07A1B211BDB85463591A923B02 + checksum32: 1012DFBFB3E37B9631FA312F7ED6B4BD1C187AC28DB724C29844BE9C4607CC52 + checksum64: 87C8394712418DCC4A608FDC34C0A23A89A41E626B9E3294C0978BB2BDA0A0D1 + checksumTools64: ADBEFDA5F92D471CBDE9CB3232775485BD1BAD61BA97376C9661C37DFD6AD027 File 'license.txt' is obtained from the following URL (and converted to markdown): http://www.sqlite.org/copyright.html diff --git a/automatic/sqlite/sqlite.nuspec b/automatic/sqlite/sqlite.nuspec index f0df568a010..d4d558713cc 100644 --- a/automatic/sqlite/sqlite.nuspec +++ b/automatic/sqlite/sqlite.nuspec @@ -3,7 +3,7 @@ SQLite - 3.43.2 + 3.46.0 SQLite chocolatey-community D. Richard Hipp, SQLite contributors @@ -47,7 +47,6 @@ Example: `choco install sqlite --params "/NoTools"` choco install sqlite --version='3.43.2' choco pin add --name='sqlite' --version='3.43.2' ``` - ]]> A DLL for the SQLite SQL database engine installed in your user path. sql sqlite db database embedded foss cross-platform diff --git a/automatic/sqlite/tools/chocolateyInstall.ps1 b/automatic/sqlite/tools/chocolateyInstall.ps1 index 43664ee7944..8c24673eefe 100644 --- a/automatic/sqlite/tools/chocolateyInstall.ps1 +++ b/automatic/sqlite/tools/chocolateyInstall.ps1 @@ -4,8 +4,8 @@ $toolsDir = Split-Path $MyInvocation.MyCommand.Definition $packageArgs = @{ PackageName = 'sqlite' - FileFullPath = "$toolsDir\sqlite-dll-win-x86-3430200.zip" - FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3430200.zip" + FileFullPath = "$toolsDir\sqlite-dll-win-x86-3460000.zip" + FileFullPath64 = "$toolsDir\sqlite-dll-win-x64-3460000.zip" Destination = $toolsDir } Get-ChildItem $toolsDir\* | Where-Object { $_.PSISContainer } | Remove-Item -Recurse -Force #remove older package dirs @@ -17,7 +17,7 @@ if (!$pp.NoTools) { Write-Error -Message "The 32-bit version of sqlite tools is not available after version 3.43.2" -Category ResourceUnavailable } Write-Host "Installing tools" - $packageArgs.FileFullPath64 = "$toolsDir\sqlite-tools-win-x86-3430200.zip" + $packageArgs.FileFullPath64 = "$toolsDir\sqlite-tools-win-x64-3460000.zip" Get-ChocolateyUnzip @packageArgs }