From 94b13ce5b8211ca79a273f82dbf400ec7d2aa231 Mon Sep 17 00:00:00 2001 From: Bowen Lan <62091230+bowenlan-amzn@users.noreply.github.com> Date: Tue, 8 Sep 2020 14:48:23 -0700 Subject: [PATCH] Adds support for Elasticsearch 7.9.1 (#251) --- .github/draft-release-notes-config.yml | 1 + build.gradle | 6 +++--- gradle.properties | 16 ++++++++++++++++ ...sticsearch-alerting.release-notes-1.10.1.0.md | 7 +++++++ 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 gradle.properties create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.1.0.md diff --git a/.github/draft-release-notes-config.yml b/.github/draft-release-notes-config.yml index 1ab40855..0a274421 100644 --- a/.github/draft-release-notes-config.yml +++ b/.github/draft-release-notes-config.yml @@ -30,6 +30,7 @@ categories: labels: - 'build' - 'testing' + - 'CI/CD' - title: 'Documentation' labels: - 'documentation' diff --git a/build.gradle b/build.gradle index 9c672501..9b2f645b 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ buildscript { apply from: 'build-tools/repositories.gradle' ext { - es_version = '7.9.0' + es_version = '7.9.1' kotlin_version = '1.3.72' } @@ -42,7 +42,7 @@ apply plugin: 'jacoco' apply from: 'build-tools/merged-coverage.gradle' ext { - opendistroVersion = '1.10.0' + opendistroVersion = "${version}" isSnapshot = "true" == System.getProperty("build.snapshot", "true") } @@ -50,7 +50,7 @@ allprojects { group = "com.amazon.opendistroforelasticsearch" // Increment the final digit when there's a new plugin versions for the same opendistro version // Reset the final digit to 0 when upgrading to a new opendistro version - version = "${opendistroVersion}.1" + version = "${opendistroVersion}.0" apply from: "$rootDir/build-tools/repositories.gradle" diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..360c9037 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,16 @@ +# +# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"). +# You may not use this file except in compliance with the License. +# A copy of the License is located at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# or in the "license" file accompanying this file. This file is distributed +# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either +# express or implied. See the License for the specific language governing +# permissions and limitations under the License. +# + +version = 1.10.1 \ No newline at end of file diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.1.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.1.0.md new file mode 100644 index 00000000..9e0dc786 --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.1.0.md @@ -0,0 +1,7 @@ +## 2020-09-08, Version 1.10.1.0 + +Compatible with Elasticsearch 7.9.1 + +### Maintenance + * Adds support for Elasticsearch 7.9.1 ([#251](https://github.com/opendistro-for-elasticsearch/alerting/pull/251)) + \ No newline at end of file