Skip to content

Commit

Permalink
0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbojko committed Feb 10, 2020
1 parent c497fa9 commit 3669303
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ A tool for exploring a docker image, layer contents, and discovering ways to shr

## Changelog

### 2020-02-10 Build 0.9.2

* version 0.9.2
* 64-bit version [https://www.virustotal.com/gui/file/4e8e48263077f94fccfb1f1c385a95640ef3c7a48fd8ca41cc7e5889ba82da28/detection](https://www.virustotal.com/gui/file/4e8e48263077f94fccfb1f1c385a95640ef3c7a48fd8ca41cc7e5889ba82da28/detection)

### 2019-11-11 Build 0.9.1

* version 0.9.1
Expand Down
Binary file removed dive.0.9.1.nupkg
Binary file not shown.
Binary file added dive.0.9.2.nupkg
Binary file not shown.
7 changes: 6 additions & 1 deletion dive.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>dive</id>
<title>Dive</title>
<version>0.9.1</version>
<version>0.9.2</version>
<authors>Alex Goodman</authors>
<owners>Marcin Bojko</owners>
<summary>A tool for exploring a docker image, layer contents, and discovering ways to shrink your Docker image size.</summary>
Expand All @@ -23,6 +23,11 @@ A tool for exploring a docker image, layer contents, and discovering ways to shr

## Changelog

### 2020-02-10 Build 0.9.2

* version 0.9.2
* 64-bit version [https://www.virustotal.com/gui/file/4e8e48263077f94fccfb1f1c385a95640ef3c7a48fd8ca41cc7e5889ba82da28/detection](https://www.virustotal.com/gui/file/4e8e48263077f94fccfb1f1c385a95640ef3c7a48fd8ca41cc7e5889ba82da28/detection)

### 2019-11-11 Build 0.9.1

* version 0.9.1
Expand Down
9 changes: 5 additions & 4 deletions tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
$ErrorActionPreference = 'Stop';

$packageName = 'dive'
$version = '0.9.1'
$version = '0.9.2'
$url64 = "https://github.com/wagoodman/dive/releases/download/v"+$version+"/dive_"+$version+"_windows_amd64.zip"
$checksum64 = "33554caf4418b69b22366db4d8214b6c4be3d8944121e9839a0bc5190980c920"
$checksum64 = "4e8e48263077f94fccfb1f1c385a95640ef3c7a48fd8ca41cc7e5889ba82da28"
$killexec = 1
$killexecprocess = "dive*"

$packageArgs = @{
packageName = $packageName
fileType = 'msi'
url64bit = $url64
UnzipLocation = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
checksumType64= 'sha256'
Expand All @@ -21,8 +20,10 @@ if ($killexec) {
try {
Write-Output "Killing all instances of: "$killexecprocess
Stop-Process -processname $killexecprocess -force }
catch {}
catch {
}
}
Start-Sleep -s 3

Install-ChocolateyZipPackage @packageArgs

0 comments on commit 3669303

Please sign in to comment.