Skip to content

Commit

Permalink
AU: 1 updated - elasticsearch
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Mar 23, 2021
1 parent 995ac40 commit b529521
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.11.2</version>
<version>7.12.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 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.11/release-notes-7.11.2.html</releaseNotes>
<releaseNotes>https://www.elastic.co/guide/en/elasticsearch/reference/7.12/release-notes-7.12.0.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.11.2"
$version = "7.12.0"
$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.11.2-windows-x86_64.zip'
$checksum = '8664cad9dd4f8791d3605f6922d663c9b253ea3fc706f13171caf74dbdaab595'
$url = 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.0-windows-x86_64.zip'
$checksum = '9d1e615de8afab1116b590a2bb45793c95b05b3b2f05a0bd9f00cf6223a97f0f'
$checksumType = 'sha256'
$version = "7.11.2"
$version = "7.12.0"

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

0 comments on commit b529521

Please sign in to comment.