diff --git a/terraform-docs.nuspec b/terraform-docs.nuspec
index a672e9e..02a632b 100644
--- a/terraform-docs.nuspec
+++ b/terraform-docs.nuspec
@@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
- 0.18.0
+ 0.19.0
https://github.com/terraform-docs/chocolatey-package
terraform-docs
diff --git a/tools/chocolateyinstall.ps1 b/tools/chocolateyinstall.ps1
index 1b721c8..f685295 100644
--- a/tools/chocolateyinstall.ps1
+++ b/tools/chocolateyinstall.ps1
@@ -2,8 +2,8 @@ $ErrorActionPreference = 'Stop'
$packageName = 'terraform-docs'
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
-$checksum = '37de7c80d96c43095cfa40322ca9cfedcd3e7a8aed084190cacd850c7d8217ab'
-$url = 'https://github.com/terraform-docs/terraform-docs/releases/download/v0.18.0/terraform-docs-v0.18.0-windows-amd64.zip'
+$checksum = '9d6d63b6c57fa82ec4bb61e7cdf504f52470fae3e46e293a7e9fcccbaddb1ba7'
+$url = 'https://github.com/terraform-docs/terraform-docs/releases/download/v0.19.0/terraform-docs-v0.19.0-windows-amd64.zip'
$destination = "$toolsPath\terraform-docs.exe"
Install-ChocolateyZipPackage -PackageName $packageName -Url64bit $url -Checksum64 $checksum -ChecksumType64 sha256 -UnzipLocation $destination