Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Add support for ODFE 1.6 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
rguo-aws authored Mar 17, 2020
1 parent 641602d commit 2000bfb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {

ext {
es_version = System.getProperty("es.version", "7.2.0")
es_version = System.getProperty("es.version", "7.6.1")
}
// This isn't applying from repositories.gradle so repeating it here
repositories {
Expand All @@ -20,11 +20,11 @@ plugins {

node {
version = "10.15.0"
download = true
download = false
}

ext {
opendistroVersion = '1.2.0'
opendistroVersion = '1.6.0'
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
isLinux = "true" == System.getProperty("build.linux", "false")
isMacOS = "true" == System.getProperty("build.macos", "false")
Expand Down Expand Up @@ -110,4 +110,4 @@ bundlePlugin {
// The testingConventions task now mandates atleast one of the integ test tasks to be performed.
// Since perftop is not really a plugin on its own, it fails the plugin install step during the integ tests. So,
// skip running testingConventions task.
gradle.startParameter.excludedTaskNames += ["integTestCluster#wait", "integTestRunner", "testingConventions"]
gradle.startParameter.excludedTaskNames += ["integTestRunner", "testingConventions"]
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
13 changes: 6 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions release-notes
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## Version 1.2.0 (Current)
## Version 1.6.0 (Current)
This is release of the Open Distro PerfTop, which is compatible with Open Distro Performance Analyzer 1.6

## Version 1.2.0
This is release of the Open Distro PerfTop, which is compatible with Open Distro Performance Analyzer 1.2.

## Version 1.1.0 (Current)
## Version 1.1.0
This is release of the Open Distro PerfTop, which is compatible with Open Distro Performance Analyzer 1.1.

## Version 1.0.0
Expand Down

0 comments on commit 2000bfb

Please sign in to comment.