Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions neovim/neovim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>0.7.2</version>
<version>0.8.0</version>
<packageSourceUrl>https://github.com/tricktux/choco-neovim</packageSourceUrl>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Reinaldo Molina</owners>
Expand Down Expand Up @@ -88,7 +88,7 @@ As of [#16317](https://github.com/neovim/neovim/pull/16317) Win32 builds and rel

</description>
<releaseNotes>
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).
</releaseNotes>
<!-- =============================== -->

Expand Down
4 changes: 2 additions & 2 deletions neovim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
}
Expand Down