From 93d9d7ac53145ba82a16e122a6b6432e9feabb30 Mon Sep 17 00:00:00 2001 From: Arsen Mkrtchyan <48698181+arsen-es@users.noreply.github.com> Date: Mon, 24 Jun 2019 10:51:26 -0700 Subject: [PATCH] Changes for 1.1.0 release (#18) Updated version number and release notes (no changes from previous release). --- build.gradle | 2 +- opendistro-elasticsearch-jdbc.release-notes | 8 +++++++- .../opendistroforelasticsearch/jdbc/internal/Version.java | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 5dd2aa7..a93e7fb 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ plugins { group 'com.amazon.opendistroforelasticsearch.client' // keep version in sync with version in Driver source -version '1.0.0.0' +version '1.1.0.0' version = "${version}" diff --git a/opendistro-elasticsearch-jdbc.release-notes b/opendistro-elasticsearch-jdbc.release-notes index f9c5340..d5486bc 100644 --- a/opendistro-elasticsearch-jdbc.release-notes +++ b/opendistro-elasticsearch-jdbc.release-notes @@ -1,4 +1,10 @@ -## 2019-06-06, Version 1.0.0 (Current) +## 2019-06-24, Version 1.1.0 (Current) + +### Changes + +* Elasticsearch 7.1.1 compatibility + +## 2019-06-06, Version 1.0.0 ### Changes diff --git a/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java b/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java index 47e032b..2e24777 100644 --- a/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java +++ b/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java @@ -19,7 +19,7 @@ public enum Version { // keep this in sync with the gradle version - Current(1, 0, 0, 0); + Current(1, 1, 0, 0); private int major; private int minor;