diff --git a/automatic/audacity/audacity.nuspec b/automatic/audacity/audacity.nuspec
index 5dd9800d38f..8dad7ebd9a9 100644
--- a/automatic/audacity/audacity.nuspec
+++ b/automatic/audacity/audacity.nuspec
@@ -5,7 +5,7 @@
audacity
Audacity
chocolatey-community
- 3.4.1
+ 3.4.2
Audacity Developers
Audacity is free, open source, cross-platform software for recording and editing sounds.
And download the following:
- x32: https://github.com/audacity/audacity/releases/download/Audacity-3.4.1/audacity-win-3.4.1-32bit.exe
- x64: https://github.com/audacity/audacity/releases/download/Audacity-3.4.1/audacity-win-3.4.1-64bit.exe
+ x32: https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-win-3.4.2-32bit.exe
+ x64: https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-win-3.4.2-64bit.exe
to acquire the installers.
@@ -17,8 +17,8 @@ Package can be verified like this:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
- checksum32: 8B9DCDC1710F8FB8D844A16B829A87440F0D9F3B7D40BB277D079D9797D901B1
- checksum64: 324BAFC47F49E244E03B2B5CEFB184D1898A8CAC0B797577CE5C3251411E072D
+ checksum32: 7F7DD6F96643A1A826D1C91A5217721F97474F171A6335C47D4C50A76C7ACEAA
+ checksum64: D7BD5AE775DB9E42DA6058DA4A65A8F898A46CE467D9F21585084566213C36BF
File 'LICENSE.txt' obtained from:
https://www.audacityteam.org/about/license/#license
diff --git a/automatic/audacity/tools/chocolateyInstall.ps1 b/automatic/audacity/tools/chocolateyInstall.ps1
index 1374eb30f67..f1db79cf0d2 100644
--- a/automatic/audacity/tools/chocolateyInstall.ps1
+++ b/automatic/audacity/tools/chocolateyInstall.ps1
@@ -5,8 +5,8 @@ $toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = 'audacity'
fileType = 'exe'
- file = "$toolsDir\audacity-win-3.4.1-32bit.exe"
- file64 = "$toolsDir\audacity-win-3.4.1-64bit.exe"
+ file = "$toolsDir\audacity-win-3.4.2-32bit.exe"
+ file64 = "$toolsDir\audacity-win-3.4.2-64bit.exe"
silentArgs = '/VERYSILENT'
validExitCodes = @(0, 1223)
}