Skip to content

Commit

Permalink
Update to version 1.54.1 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Smalley authored Nov 30, 2023
1 parent 210d286 commit 54528af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tailscale.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<!-- == PACKAGE SPECIFIC SECTION == -->
<id>tailscale</id>
<version>1.54.0</version>
<version>1.54.1</version>
<packageSourceUrl>https://github.com/zombiezen/tailscale-choco</packageSourceUrl>
<owners>zombiezen</owners>
<!-- == SOFTWARE SPECIFIC SECTION == -->
Expand Down
12 changes: 6 additions & 6 deletions tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ $packageArgs = @{
if ($env:PROCESSOR_IDENTIFIER.StartsWith('ARMv')) {
# Windows on ARM
$packageArgs += @{
Url = 'https://pkgs.tailscale.com/stable/tailscale-setup-1.54.0-arm64.msi'
Checksum = 'e4bc373591f08dda14c7d33719414a0585869ce636b6db5e7d9daae5b9c3e0ba'
Url = 'https://pkgs.tailscale.com/stable/tailscale-setup-1.54.1-arm64.msi'
Checksum = '46e230549961842695d086a1975a13e3d16cf572cd09b70d8936973990c3aea9'
ChecksumType = 'sha256'
}
}
else {
# Windows on x86 or x64
$packageArgs += @{
Url = 'https://pkgs.tailscale.com/stable/tailscale-setup-1.54.0-x86.msi'
Checksum = '3b5b9b1bc831a02c26336cfe9286b4e7c4bc05fdb35426a6122760874c377e63'
Url = 'https://pkgs.tailscale.com/stable/tailscale-setup-1.54.1-x86.msi'
Checksum = 'b64f726e06c1d3bc8fb4cc3f1845b2851b42feddd137d3be1f17657827110910'
ChecksumType = 'sha256'

Url64Bit = 'https://pkgs.tailscale.com/stable/tailscale-setup-1.54.0-amd64.msi'
Checksum64 = 'd932e2db675d71cd483e5a29706af33ee93886b91092a612c7cec32a39e8bf16'
Url64Bit = 'https://pkgs.tailscale.com/stable/tailscale-setup-1.54.1-amd64.msi'
Checksum64 = '40a837e00664ddc9d6b4e686c9d7d8097e6d05452d2721c7e7bc0e138d11ba43'
ChecksumType64 = 'sha256'
}
}
Expand Down

0 comments on commit 54528af

Please sign in to comment.