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

Adds support for Elasticsearch 7.9.1 #251

Merged
merged 1 commit into from
Sep 8, 2020
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/draft-release-notes-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ categories:
labels:
- 'build'
- 'testing'
- 'CI/CD'
- title: 'Documentation'
labels:
- 'documentation'
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand All @@ -42,15 +42,15 @@ apply plugin: 'jacoco'
apply from: 'build-tools/merged-coverage.gradle'

ext {
opendistroVersion = '1.10.0'
opendistroVersion = "${version}"
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
}

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"

Expand Down
16 changes: 16 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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))