From cc0054f3c7641c4071f8d5fc310d0eed6eca09a5 Mon Sep 17 00:00:00 2001 From: arsenmk Date: Thu, 6 Jun 2019 15:13:35 -0700 Subject: [PATCH 1/2] Bumping the version number to 1.0.0 --- 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 12b6e2f..5dd2aa7 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 '0.9.0.0' +version '1.0.0.0' version = "${version}" diff --git a/opendistro-elasticsearch-jdbc.release-notes b/opendistro-elasticsearch-jdbc.release-notes index e85d1b6..2ef1959 100644 --- a/opendistro-elasticsearch-jdbc.release-notes +++ b/opendistro-elasticsearch-jdbc.release-notes @@ -1,5 +1,11 @@ +## 2019-06-06, Version 1.0.0 (Current) -## 2019-04-19, Version 0.9.0 (Current) +### Changes + +* Update to LocalDateTime conversion to Timestamp to support timezone [issue #6] +* Updated the connection URL template in README.md + +## 2019-04-19, Version 0.9.0 No update in this release. 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 170e39a..47e032b 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(0, 9, 0, 0); + Current(1, 0, 0, 0); private int major; private int minor; From c54bab1f85dcf877f77f9ad53bc707a69eb880c3 Mon Sep 17 00:00:00 2001 From: arsenmk Date: Thu, 6 Jun 2019 15:49:17 -0700 Subject: [PATCH 2/2] addressing PR comment --- opendistro-elasticsearch-jdbc.release-notes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendistro-elasticsearch-jdbc.release-notes b/opendistro-elasticsearch-jdbc.release-notes index 2ef1959..f9c5340 100644 --- a/opendistro-elasticsearch-jdbc.release-notes +++ b/opendistro-elasticsearch-jdbc.release-notes @@ -2,7 +2,7 @@ ### Changes -* Update to LocalDateTime conversion to Timestamp to support timezone [issue #6] +* Updated the LocalDateTime to Timestamp conversion to support timezone [issue #6] * Updated the connection URL template in README.md ## 2019-04-19, Version 0.9.0