Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartpa committed Oct 10, 2023
1 parent ab27fde commit 3dbc106
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.2.1</version>
<version>1.4.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.2.1</releaseNotes>
<releaseNotes>https://github.com/microsoft/go-sqlcmd/releases/tag/v1.4.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.2.1/sqlcmd-x64_1.2.1-1.msi'
$url64 = 'https://github.com/microsoft/go-sqlcmd/releases/download/v1.4.0/sqlcmd-x64_1.4.0-1.msi'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'MSI'
url64bit = $url64
softwareName = 'sqlcmd*'
checksum64 = '35bc47399562ddca1fd717a993243b83ca1b2e1ef8010703e9c0298a9b8af2ad'
checksum64 = '0b6cd48765439668a1de6e6ed6537227d902b34e6ea863c1f4667b43c540151b'
checksumType64= 'sha256'

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

0 comments on commit 3dbc106

Please sign in to comment.