diff --git a/automatic/cloc/README.md b/automatic/cloc/README.md index 1607fb165..74b369d05 100644 --- a/automatic/cloc/README.md +++ b/automatic/cloc/README.md @@ -3,7 +3,7 @@ [![Software license](https://img.shields.io/badge/License-GPLv2-blue.svg)](https://github.com/AlDanial/cloc/blob/master/LICENSE) [![Maintenance status](https://img.shields.io/badge/maintained%3F-yes-green.svg)](https://gitHub.com/dgalbraith/chocolatey-packages/graphs/commit-activity) [![AppVeyor build](https://img.shields.io/appveyor/ci/dgalbraith/chocolatey-packages)](https://ci.appveyor.com/project/dgalbraith/chocolatey-packages) -[![Software version](https://img.shields.io/badge/Source-v1.86-blue.svg)](https://github.com/AlDanial/cloc/releases/tag/1.86) +[![Software version](https://img.shields.io/badge/Source-v1.88-blue.svg)](https://github.com/AlDanial/cloc/releases/tag/1.88) [![Chocolatey package version](https://img.shields.io/chocolatey/v/cloc?label=Chocolatey)](https://chocolatey.org/packages/cloc) cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. Given two diff --git a/automatic/cloc/cloc.nuspec b/automatic/cloc/cloc.nuspec index 825a33045..9eba6ad88 100644 --- a/automatic/cloc/cloc.nuspec +++ b/automatic/cloc/cloc.nuspec @@ -3,7 +3,7 @@ cloc - 1.86 + 1.88 https://github.com/dgalbraith/chocolatey-packages/tree/master/automatic/cloc dgalbraith Count Lines of Code (CLOC) @@ -54,7 +54,7 @@ OpenBSD, Mac OS X, AIX, HP-UX, Solaris, IRIX, z/OS, and Windows. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly. ]]> - https://github.com/AlDanial/cloc/releases/download/1.86/release_notes-1.86.txt + https://github.com/AlDanial/cloc/releases/download/1.88/release_notes-1.88.txt diff --git a/automatic/cloc/legal/VERIFICATION.txt b/automatic/cloc/legal/VERIFICATION.txt index a27b7b75c..a0406a820 100644 --- a/automatic/cloc/legal/VERIFICATION.txt +++ b/automatic/cloc/legal/VERIFICATION.txt @@ -10,19 +10,19 @@ be verified by: https://github.com/AlDanial/cloc/releases/ -and download the file cloc-1.86.exe using the links on the page. +and download the file cloc-1.88.exe using the links on the page. Alternatively the file can be downloaded directly from - https://github.com/AlDanial/cloc/releases/download/1.86/cloc-1.86.exe + https://github.com/AlDanial/cloc/releases/download/1.88/cloc-1.88.exe 2. The archive can be validated by comparing checksums - - Use powershell function 'Get-Filehash' - Get-Filehash -Algorithm sha256 cloc-1.86.exe - - Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f cloc-1.86.exe + - Use powershell function 'Get-Filehash' - Get-Filehash -Algorithm sha256 cloc-1.88.exe + - Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f cloc-1.88.exe - File: cloc-1.86.exe + File: cloc-1.88.exe Type: sha256 - Checksum: 1B2E189DF1834411B34534DB446330D1C379B4BC008AF3042EE9ADE818C6A1C8 + Checksum: 97D5D2631D1CCCDBFD99267AB8A4CF5968816BBE52C0F9324E72E768857F642D Contents of file LICENSE.txt is obtained from https://github.com/AlDanial/cloc/blob/master/LICENSE diff --git a/automatic/cloc/tools/chocolateyInstall.ps1 b/automatic/cloc/tools/chocolateyInstall.ps1 index 074024820..b46312100 100644 --- a/automatic/cloc/tools/chocolateyInstall.ps1 +++ b/automatic/cloc/tools/chocolateyInstall.ps1 @@ -9,7 +9,7 @@ Remove-Item -Path $legacy -Force -ErrorAction SilentlyContinue | Out-Null $binArgs = @{ name = $env:ChocolateyPackageName - path = "$toolsDir\cloc-1.86.exe" + path = "$toolsDir\cloc-1.88.exe" } Install-BinFile @binArgs diff --git a/automatic/cloc/tools/chocolateyUninstall.ps1 b/automatic/cloc/tools/chocolateyUninstall.ps1 index b99f48900..10e632fe4 100644 --- a/automatic/cloc/tools/chocolateyUninstall.ps1 +++ b/automatic/cloc/tools/chocolateyUninstall.ps1 @@ -4,7 +4,7 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $binArgs = @{ name = $env:ChocolateyPackageName - path = "$toolsDir\cloc-1.86.exe" + path = "$toolsDir\cloc-1.88.exe" } Remove-BinFile @binArgs