Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: testkube version update for choco to 1.4.6 #2010

Merged
merged 1 commit into from
Aug 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion choco/testkube.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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>1.4.5</version>
<version>1.4.6</version>
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</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>Kubeshop</owners>
Expand Down
4 changes: 2 additions & 2 deletions choco/tools/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ Checksums can be found here https://github.com/kubeshop/testkube/releases/tag/<v
or directly here: https://github.com/kubeshop/testkube/releases/download/<vTestkube_version>/testkube_<Teskube_version>_Windows_i386_checksum.txt


For example for version v1.4.5 it is https://github.com/kubeshop/testkube/releases/tag/v1.4.5
and https://github.com/kubeshop/testkube/releases/download/v1.4.5/testkube_1.4.5_Windows_i386_checksum.txt
For example for version v1.4.6 it is https://github.com/kubeshop/testkube/releases/tag/v1.4.6
and https://github.com/kubeshop/testkube/releases/download/v1.4.6/testkube_1.4.6_Windows_i386_checksum.txt

4 changes: 2 additions & 2 deletions choco/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileLocation = Join-Path $toolsDir 'testkube_1.4.5_Windows_i386.msi'
$fileLocation = Join-Path $toolsDir 'testkube_1.4.6_Windows_i386.msi'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
Expand All @@ -10,7 +10,7 @@ $packageArgs = @{

softwareName = 'testkube'

checksum = '5537A52CD20F521A583500DB71B0CAEFA688616DA7F0E75754B108B57C0E8F03'
checksum = 'AA3E2976AB9FFDB2066CD1367F43DDCA3381B570E851768DFB0197A08BCA40DA'
checksumType = 'sha256'

silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down