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

Commit 25090f7

Browse files
authored
OpensDistro Release 1.9.0 (#87)
* Rename release notes * Support v7.8.0 Compatibility * Change Maven endpoint
1 parent 1c31cb7 commit 25090f7

5 files changed

+9
-7
lines changed

build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ plugins {
3232
group 'com.amazon.opendistroforelasticsearch.client'
3333

3434
// keep version in sync with version in Driver source
35-
version '1.8.0.0'
36-
37-
version = "${version}"
35+
version '1.9.0.0'
3836

3937
boolean snapshot = "true".equals(System.getProperty("build.snapshot", "true"));
4038
if (snapshot) {
@@ -166,7 +164,7 @@ publishing {
166164
}
167165
maven {
168166
name = "sonatype-staging"
169-
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
167+
url "https://aws.oss.sonatype.org/service/local/staging/deploy/maven2"
170168
credentials {
171169
username project.hasProperty('ossrhUsername') ? project.property('ossrhUsername') : ''
172170
password project.hasProperty('ossrhPassword') ? project.property('ossrhPassword') : ''
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## 2020-05-07, Version 1.7.0.0 (Current)
1+
## 2020-05-07, Version 1.7.0.0
22
### Changes
3-
* 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))
3+
* 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 numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 2020-06-23, Version 1.9.0.0 (Current)
2+
### Features
3+
* Feature [#87](https://github.com/opendistro-for-elasticsearch/sql-jdbc/pull/87): Elasticsearch 7.8.0 compatibility
4+
(issue: [#86](https://github.com/opendistro-for-elasticsearch/sql-jdbc/issues/86))

src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
public enum Version {
2020

2121
// keep this in sync with the gradle version
22-
Current(1, 8, 0, 0);
22+
Current(1, 9, 0, 0);
2323

2424
private int major;
2525
private int minor;

0 commit comments

Comments
 (0)