Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Commit

Permalink
OpensDistro Release 1.9.0 (#87)
Browse files Browse the repository at this point in the history
* Rename release notes

* Support v7.8.0 Compatibility

* Change Maven endpoint
  • Loading branch information
joshuali925 committed Jun 24, 2020
1 parent 1c31cb7 commit 25090f7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ plugins {
group 'com.amazon.opendistroforelasticsearch.client'

// keep version in sync with version in Driver source
version '1.8.0.0'

version = "${version}"
version '1.9.0.0'

boolean snapshot = "true".equals(System.getProperty("build.snapshot", "true"));
if (snapshot) {
Expand Down Expand Up @@ -166,7 +164,7 @@ publishing {
}
maven {
name = "sonatype-staging"
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
url "https://aws.oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username project.hasProperty('ossrhUsername') ? project.property('ossrhUsername') : ''
password project.hasProperty('ossrhPassword') ? project.property('ossrhPassword') : ''
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 2020-05-07, Version 1.7.0.0 (Current)
## 2020-05-07, Version 1.7.0.0
### Changes
* Feature [#76](https://github.com/opendistro-for-elasticsearch/sql-jdbc/pull/76): Cursor integration. (issue: [#74](https://github.com/opendistro-for-elasticsearch/sql-jdbc/issues/74))
* Feature [#76](https://github.com/opendistro-for-elasticsearch/sql-jdbc/pull/76): Cursor integration. (issue: [#74](https://github.com/opendistro-for-elasticsearch/sql-jdbc/issues/74))
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 2020-06-23, Version 1.9.0.0 (Current)
### Features
* Feature [#87](https://github.com/opendistro-for-elasticsearch/sql-jdbc/pull/87): Elasticsearch 7.8.0 compatibility
(issue: [#86](https://github.com/opendistro-for-elasticsearch/sql-jdbc/issues/86))
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public enum Version {

// keep this in sync with the gradle version
Current(1, 8, 0, 0);
Current(1, 9, 0, 0);

private int major;
private int minor;
Expand Down

0 comments on commit 25090f7

Please sign in to comment.