Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartpa committed Feb 28, 2024
1 parent 0dd417e commit e0643c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions release/windows/choco/sqlcmd.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>sqlcmd</id>
<version>1.5.0</version>
<version>1.6.0</version>
<title>sqlcmd (Install)</title>
<authors>Microsoft</authors>
<owners>stuartpa</owners>
Expand All @@ -18,7 +18,7 @@
<tags>sqlcmd mssql sqlserver</tags>
<summary>sqlcmd CLI for Microsoft SQL Server and Azure SQL</summary>
<description>sqlcmd is a multi-platform command line experience for Microsoft SQL Server and Azure SQL</description>
<releaseNotes>https://github.com/microsoft/go-sqlcmd/releases/tag/v1.5.0</releaseNotes>
<releaseNotes>https://github.com/microsoft/go-sqlcmd/releases/tag/v1.6.0</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
4 changes: 2 additions & 2 deletions release/windows/choco/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://github.com/microsoft/go-sqlcmd/releases/download/v1.5.0/sqlcmd-x64_1.5.0-1.msi'
$url64 = 'https://github.com/microsoft/go-sqlcmd/releases/download/v1.6.0/sqlcmd-x64_1.6.0-1.msi'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'MSI'
url64bit = $url64
softwareName = 'sqlcmd*'
checksum64 = 'fe1a7045fd6c78d33666b17b12b86b4b1ee414cb49fc093130aa8b1294aadf10'
checksum64 = '89599bcfa6dce0a81975353b67a250f0072ec5aed45e73039d8c85874d7e2d85'
checksumType64= 'sha256'

silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down

0 comments on commit e0643c8

Please sign in to comment.