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;