Skip to content

Commit

Permalink
AU: 2 updated - barcode-to-pc-server elasticsearch
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Sep 24, 2020
1 parent 2a9a774 commit c2ab3b3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion automatic/barcode-to-pc-server/barcode-to-pc-server.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>3.12.0</version>
<version>3.13.0</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand Down
4 changes: 2 additions & 2 deletions automatic/barcode-to-pc-server/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url32 = 'https://github.com/fttx/barcode-to-pc-server/releases/download/v3.12.0/barcode-to-pc-server.v3.12.0.win.setup.exe'
$checksum32 = '6530d020b8ffab489bef4cb471e36c7037bb9b47bea2b7018e8bb0d4c9627520'
$url32 = 'https://github.com/fttx/barcode-to-pc-server/releases/download/v3.13.0/barcode-to-pc-server.v3.13.0.win.setup.exe'
$checksum32 = '1c5aeb4181b6aac7e0010487af1afb97e51b1f25660460070e100e86b7caaec4'
$checksumType32 = 'sha256'

$packageArgs = @{
Expand Down
4 changes: 2 additions & 2 deletions automatic/elasticsearch/elasticsearch.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>7.9.1</version>
<version>7.9.2</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand All @@ -41,7 +41,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- copyright is usually years and software vendor, but not required for internal feeds -->
<copyright>Elasticsearch B.V.</copyright>
<tags>search REST analytics metrics</tags>
<releaseNotes>https://www.elastic.co/guide/en/elasticsearch/reference/7.9/release-notes-7.9.1.html</releaseNotes>
<releaseNotes>https://www.elastic.co/guide/en/elasticsearch/reference/7.9/release-notes-7.9.2.html</releaseNotes>
<licenseUrl>https://github.com/elastic/elasticsearch/blob/master/LICENSE.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/elasticsearch</packageSourceUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/elasticsearch/tools/chocolateyBeforeModify.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$unPath = Join-Path $toolsDir 'Uninstall-ChocolateyPath.psm1'
Import-Module $unPath

$version = "7.9.1"
$version = "7.9.2"
$binPath = Join-Path $toolsDir "elasticsearch-$($version)\bin"
Uninstall-ChocolateyPath $binPath 'Machine'
6 changes: 3 additions & 3 deletions automatic/elasticsearch/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
$ErrorActionPreference = 'Stop';

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.1-windows-x86_64.zip'
$checksum = '659ca58e2a735ed230e5635c2a225d88714c9fcb4344ae825d5d2844656f9c68'
$url = 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.2-windows-x86_64.zip'
$checksum = '9fe8d55fcdd90f4b7495349b9e9dff2af7fb48e113bb861b4b9b961678cc7753'
$checksumType = 'sha256'
$version = "7.9.1"
$version = "7.9.2"

$packageArgs = @{
packageName = $env:ChocolateyPackageName
Expand Down

0 comments on commit c2ab3b3

Please sign in to comment.