diff --git a/neovim/neovim.nuspec b/neovim/neovim.nuspec
index cae85a3..f592678 100644
--- a/neovim/neovim.nuspec
+++ b/neovim/neovim.nuspec
@@ -27,7 +27,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
- 0.7.2
+ 0.8.0
https://github.com/tricktux/choco-neovim
Reinaldo Molina
@@ -88,7 +88,7 @@ As of [#16317](https://github.com/neovim/neovim/pull/16317) Win32 builds and rel
-Release notes [here](https://github.com/neovim/neovim/releases/tag/v0.7.2).
+Release notes [here](https://github.com/neovim/neovim/releases/tag/v0.8.0).
diff --git a/neovim/tools/chocolateyinstall.ps1 b/neovim/tools/chocolateyinstall.ps1
index 3b26af4..5d2cfe1 100644
--- a/neovim/tools/chocolateyinstall.ps1
+++ b/neovim/tools/chocolateyinstall.ps1
@@ -7,7 +7,7 @@ $ErrorActionPreference = 'Stop'; # stop on all errors
$packageName = 'neovim' # arbitrary name for the package, used in messages
$destDir = Join-Path $(Get-ToolsLocation) $packageName
-$url64 = 'https://github.com/neovim/neovim/releases/download/v0.7.2/nvim-win64.zip' # 64bit URL here (HTTPS preferred) or remove - if installer contains both (very rare), use $url
+$url64 = 'https://github.com/neovim/neovim/releases/download/v0.8.0/nvim-win64.zip' # 64bit URL here (HTTPS preferred) or remove - if installer contains both (very rare), use $url
$bin = $destDir + '\nvim-win64\bin'
# Get user provided paramaters
@@ -19,7 +19,7 @@ $packageArgs = @{
unzipLocation = $destDir
url64bit = $url64
softwareName = 'neovim*' #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique
- checksum64 = '0e969e15c7e4d9b128ec1e06159ead386d262fdc94616ddbb0c245abcc798ae8'
+ checksum64 = 'c52e0a93e8bd7e0192c3fe4552d8b0fb66fc8e08b6949e92340cccc4fa3a9bd0'
checksumType64= 'sha256' #default is checksumType
validExitCodes= @(0) #please insert other valid exit codes here
}